{"info":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","description":"<html><head></head><body><p>ShotFlow’s Enterprise Content Production Platform provides a unique set of capabilities for scaled visual content production across brands and their studio, vendor, post-production partners and broader composable tech stack. ShotFlow is an “API first” platform that relies on our API for all activity within the system. ShotFlow provides this public subset of our APIs to clients to support custom integration projects between ShotFlow and other client Systems of Record.</p>\n<p>Effective January 2025, ShotFlow has implemented the following API Policy to ensure client success on our platform. This policy reflects the collective best interest of our clients for foundational performance and stability.</p>\n<h2 id=\"api-policy\"><strong>API Policy</strong></h2>\n<ul>\n<li><p><strong>Enterprise tier clients will have exclusive access</strong>&nbsp;to our Client API and associated sandbox environment for developing and testing API integrations.</p>\n</li>\n<li><p><strong>All new API integration will require sign off by ShotFlow Development prior to production deployment</strong>&nbsp;to ensure the ShotFlow app and integration is optimized for stability and performance.</p>\n<ul>\n<li><p>Enterprise clients can continue to develop and test in a sandbox environment</p>\n</li>\n<li><p>Once ready, Clients can request this API tech review through our support ticketing system providing business objectives, details of APIs to be used, tables and fields to be accessed and/or updated, and any other nuances of the integration.</p>\n</li>\n<li><p>ShotFlow development will run a comprehensive tech review and either provide approval of the production deployment timeframe or required critical changes to be implemented before launch.</p>\n</li>\n<li><p>In order to ensure launch project timelines, API integrations should be submitted 2 weeks in advance of a deployment date.</p>\n</li>\n</ul>\n</li>\n<li><p>A Rate Limiting capability will be implemented to protect the system from receiving more data than it can handle while ensuring equitable distribution of system resources. These changes will be communicated to clients currently using the API once we have finalized the timing.</p>\n</li>\n</ul>\n<p><strong>Important:</strong>&nbsp;Abuse of this Policy may result in the shutting down of API capabilities. This extreme measure will be done for the purpose of ensuring stability of all our clients.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Authenticating to the ShotFlow API requires the user to submit an email and password via the <code>POST: /users/token</code> request.</p>\n<p>Upon a successful authentication, the response contains a token which must then be set in the headers for each request with the key: <strong>api-token</strong>.</p>\n<h4 id=\"example-authentication\">Example Authentication:</h4>\n<p>Path: <code>POST: /users/token</code></p>\n<p>Request Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"email\" : \"user@shotflow.com\",\n  \"password\" : \"password\"\n}\n\n</code></pre>\n<p>Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"data\": {\n        \"token\": \"f602a83ddff15d4061a3455cfad61530702190dfe68c23e29743f0fe69ae4eac001d03a769c72b37\"\n    }\n}\n\n</code></pre>\n<p>Add this token as api-token header to your requests.</p>\n<h1 id=\"queriesoptions\">Queries/Options</h1>\n<h2 id=\"query-operators\">Query Operators</h2>\n<h4 id=\"comparison-operators\">Comparison Operators</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>$ct</td>\n<td>Matches values that are partially equal to specified value(s).</td>\n</tr>\n<tr>\n<td>$nct</td>\n<td>Matches all values that are not partially equal to specified value(s).</td>\n</tr>\n<tr>\n<td>$em</td>\n<td>Matches values that are empty.</td>\n</tr>\n<tr>\n<td>$nem</td>\n<td>Matches values that are not empty.</td>\n</tr>\n<tr>\n<td>$eq</td>\n<td>Matches values that are equal to a specified value.</td>\n</tr>\n<tr>\n<td>$neq</td>\n<td>Matches all values that are not equal to a specified value.</td>\n</tr>\n<tr>\n<td>$gt</td>\n<td>Matches values that are greater than a specified value.</td>\n</tr>\n<tr>\n<td>$gte</td>\n<td>Matches values that are greater than or equal to a specified value.</td>\n</tr>\n<tr>\n<td>$in</td>\n<td>Matches any of the values specified in an array.</td>\n</tr>\n<tr>\n<td>$nin</td>\n<td>Matches any of the values specified not in an array.</td>\n</tr>\n<tr>\n<td>$lt</td>\n<td>Matches values that are less than a specified value.</td>\n</tr>\n<tr>\n<td>$lte</td>\n<td>Matches values that are less than or equal to a specified value.</td>\n</tr>\n</tbody>\n</table>\n</div><p>All textual comparisons are case-insensitive.</p>\n<h4 id=\"logical-operators\">Logical Operators</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>$and</td>\n<td>Joins query cluases with a logical AND returns all records that match the conditions of both clauses.</td>\n</tr>\n<tr>\n<td>$or</td>\n<td>Joins query clauses with a logical OR returns all records that match the conditions of either clause.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"query-functions\">Query Functions</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Function</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>today</td>\n<td>Use today's date, optionally set the modifier and interval (minutes, hours, days, months or years) from today's date. If the field being compared to is \"Date\" then only the date is generated. However if field being compared to is \"Date and Time\" then both the date and time is generated which effects the outcome of the comparison being made. Time intervals cannot be applied to date fields and will be automatically omitted.</td>\n<td>today() <em>or</em> today(-1, days)</td>\n</tr>\n<tr>\n<td>week</td>\n<td>Use current week, optionally set the modifier from current week.</td>\n<td>week() <em>or</em> week(-1)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"query-options\">Query Options</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>Numeric value to limit records returned.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>Numeric value to set offset of records being returned.</td>\n</tr>\n<tr>\n<td>order</td>\n<td>The field UUID(s) to order by. Optionally you can have an array of objects containing the field UUID and order direction (asc or desc).</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>Timezone to apply when querying against timestamp fields. Examples: \"America/Los_Angeles\" - Pacific Time Zone (PST), \"America/Denver\" - Mountain Time Zone (MST), \"America/Chicago\" - Central Time Zone (CST), \"America/New_York\" - Eastern Time Zone (EST). This does not modify the format of data being returned.</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Boolean value, whether to return total record count along with queried records.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"notes\">Notes</h2>\n<ul>\n<li>You can replace the field uuid in a query with a wildcard selector (*) to apply query to all fields. When a wildcard selector is used, fields provided in the request are queried. If no fields are provided in the request then all table/view fields are queried.</li>\n</ul>\n<h2 id=\"examples\">Examples</h2>\n<h4 id=\"request\">Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n     \"fields\": [\n          \"f717abf8-db35-430b-9a10-6ad9a877c571\",\n          \"9c51ddf8-5691-4025-b034-ca142976004b\"\n     ],\n     \"query\": {\n          \"9c51ddf8-5691-4025-b034-ca142976004b\": {\n               \"$ct\": \"001\"\n          }\n     },\n     \"options\": {\n          \"order\": \"9c51ddf8-5691-4025-b034-ca142976004b\",\n          \"limit\": 20\n     }\n}\n\n</code></pre>\n<h4 id=\"sql\">SQL</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sql\">SELECT \"f717abf8-db35-430b-9a10-6ad9a877c571\", \"9c51ddf8-5691-4025-b034-ca142976004b\"\nFROM {table}\nWHERE \"9c51ddf8-5691-4025-b034-ca142976004b\" LIKE '%001%'\nORDER BY \"9c51ddf8-5691-4025-b034-ca142976004b\"\nLIMIT 20;\n\n</code></pre>\n<h4 id=\"request-1\">Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n     \"query\": {\n          \"2a51f996-0341-497f-8095-fc2dda8d6264\": {\n               \"$in\": [\n                    \"295672\",\n                    \"295673\",\n                    \"295674\"\n               ]\n          },\n          \"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\": {\n               \"$eq\": \"On-Figure\"\n          }\n     }\n}\n\n</code></pre>\n<h4 id=\"sql-1\">SQL</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sql\">SELECT *\nFROM {table}\nWHERE \"2a51f996-0341-497f-8095-fc2dda8d6264\" IN ('295672', '295673', '295674')\nAND \"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\" = 'On-Figure';\n\n</code></pre>\n<h4 id=\"request-2\">Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n     \"query\": {\n          \"2a51f996-0341-497f-8095-fc2dda8d6264\": {\n               \"$in\": [\n                    \"295672\",\n                    \"295673\",\n                    \"295674\"\n               ]\n          },\n          \"$or\": [\n               {\n                    \"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\": {\n                         \"$eq\": \"Laydown\"\n                    }\n               },\n               {\n                    \"e2f1017d-3451-4f85-bb62-94a7bc3a1c6d\": {\n                         \"$eq\": \"Salieu Jalloh\"\n                    }\n               }\n          ]\n     }\n}\n\n</code></pre>\n<h4 id=\"sql-2\">SQL</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sql\">SELECT *\nFROM {table}\nWHERE \"2a51f996-0341-497f-8095-fc2dda8d6264\" IN ('295672', '295673', '295674')\nAND (\"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\" = 'Laydown' OR \"e2f1017d-3451-4f85-bb62-94a7bc3a1c6d\" = 'Salieu Jalloh');\n\n</code></pre>\n<h4 id=\"request-3\">Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n     \"query\": {\n          \"2a51f996-0341-497f-8095-fc2dda8d6264\": {\n               \"$in\": [\n                    \"295672\",\n                    \"295673\",\n                    \"295674\"\n               ]\n          },\n          \"$or\": [\n               {\n                    \"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\": {\n                         \"$eq\": \"Laydown\"\n                    }\n               },\n               {\n                    \"$and\": [\n                         {\n                              \"e2f1017d-3451-4f85-bb62-94a7bc3a1c6d\": {\n                                   \"$eq\": \"Salieu Jalloh\"\n                              }\n                         },\n                         {\n                              \"5406368e-b587-4a40-b361-162a22bac98a\": {\n                                   \"$eq\": \"04-11-2016\"\n                              }\n                         }\n                    ]\n               }\n          ]\n     }\n}\n\n</code></pre><h4 id=\"sql-3\">SQL</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sql\">SELECT *\nFROM {table}\nWHERE \"2a51f996-0341-497f-8095-fc2dda8d6264\" IN ('295672', '295673', '295674')\nAND (\"2078b57b-d27f-4bf3-8e4d-f20657e6e23c\" = 'Laydown' OR (\"e2f1017d-3451-4f85-bb62-94a7bc3a1c6d\" = 'Salieu Jalloh' AND \"5406368e-b587-4a40-b361-162a22bac98a\" = '04-11-2016'))\n\n</code></pre>\n<h1 id=\"requests\">Requests</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Queries/Options","slug":"queriesoptions"},{"content":"Requests","slug":"requests"}],"owner":"21629906","collectionId":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","publishedId":"UzBqpkDN","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2025-01-22T14:03:13.000Z"},"item":[{"name":"Authentication","item":[{"name":"/users/token","id":"54069c60-65a2-4828-99e8-8f83004a21f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"email\": \"user@shotflow.com\",\n  \"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/users/token","description":"<h4 id=\"description\">Description:</h4>\n<p>Generate an API token.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["users","token"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"70e08d40-36fc-4842-9953-5e92844a2c2d","name":"/users/token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"email\": \"user@shotflow.com\",\n  \"password\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/users/token"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"token\": \"*******************\"\n    }\n}"}],"_postman_id":"54069c60-65a2-4828-99e8-8f83004a21f6"}],"id":"95564d96-991f-4a28-81ed-23a27ba6ac63","event":[{"listen":"prerequest","script":{"id":"76e5517b-b2e1-4b6f-87c4-5c4b472f605e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"52001f0c-640f-47f2-b1cf-70b571d65af0","type":"text/javascript","exec":[""]}}],"_postman_id":"95564d96-991f-4a28-81ed-23a27ba6ac63","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Schema","item":[{"name":"/applications/{application uuid}","id":"6c10d33a-fe98-478c-be47-4dd3071f6d82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Get application, if application uuid is omitted from the URI then all applications the user has permissions to are returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"8eef3356-e202-45dc-9146-344ec309f5b3","name":"/applications/{application uuid}","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 10:34:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3385"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"uuid\": \"944d0605-e294-4945-94c0-24d3908dc655\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"Base QA Capture Brand 1-15\",\n            \"alias\": \"base_qa_capture_brand_115\",\n            \"description\": null,\n            \"category\": \"brand\",\n            \"modules\": null,\n            \"box_folder\": null,\n            \"created\": 1610713064,\n            \"created_by\": {\n                \"name\": \"Rebecca Starr\",\n                \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                \"email\": \"rebecca@shotflow.com\"\n            },\n            \"first_weekday\": 1,\n            \"optimised\": 1654318864,\n            \"status\": \"active\",\n            \"api_access\": true,\n            \"indexable_threshold\": 5,\n            \"substatus\": null,\n            \"instance\": null,\n            \"wildcard_queries\": \"t\",\n            \"permissions\": false\n        },\n        {\n            \"uuid\": \"90e20fe9-bccf-4b84-a1e2-f4aff945464f\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"Base QA Capture BRAND PC\",\n            \"alias\": \"base_qa_capture_brand_pc\",\n            \"description\": null,\n            \"category\": \"brand\",\n            \"modules\": null,\n            \"box_folder\": null,\n            \"created\": 1608724429,\n            \"created_by\": {\n                \"name\": \"Rebecca Starr\",\n                \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                \"email\": \"rebecca@shotflow.com\"\n            },\n            \"first_weekday\": 1,\n            \"optimised\": 1655874062,\n            \"status\": \"active\",\n            \"api_access\": true,\n            \"indexable_threshold\": 5,\n            \"substatus\": \"ps_test\",\n            \"instance\": null,\n            \"wildcard_queries\": \"t\",\n            \"permissions\": false\n        },\n        {\n            \"uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"Base QA Capture Master BRAND TEST\",\n            \"alias\": \"base_qa_capture_master_brand_test\",\n            \"description\": \"Hello\",\n            \"status\": \"active\",\n            \"substatus\": \"ps_test\",\n            \"api_access\": true,\n            \"wildcard_queries\": true,\n            \"category\": \"brand\",\n            \"modules\": null,\n            \"box_folder\": 144881606077,\n            \"first_weekday\": 1,\n            \"indexable_threshold\": 7,\n            \"created\": 1582554828,\n            \"created_by\": {\n                \"name\": \"Rebecca Starr\",\n                \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                \"email\": \"rebecca@shotflow.com\"\n            },\n            \"permissions\": true\n        },\n        {\n            \"uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"Base QA Capture Master STUDIO TEST\",\n            \"alias\": \"base_qa_capture_master_studio_test\",\n            \"description\": null,\n            \"status\": \"active\",\n            \"substatus\": \"prelaunch\",\n            \"api_access\": true,\n            \"wildcard_queries\": true,\n            \"category\": \"studio\",\n            \"modules\": null,\n            \"box_folder\": null,\n            \"first_weekday\": 1,\n            \"indexable_threshold\": 5,\n            \"created\": 1582554859,\n            \"created_by\": {\n                \"name\": \"Rebecca Starr\",\n                \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                \"email\": \"rebecca@shotflow.com\"\n            },\n            \"permissions\": true\n        },\n        {\n            \"uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"Base QA Capture Master STUDIO TEST (Caroline))\",\n            \"alias\": \"base_qa_capture_master_studio_test_caroline\",\n            \"description\": null,\n            \"category\": \"studio\",\n            \"modules\": null,\n            \"box_folder\": null,\n            \"created\": 1600243285,\n            \"created_by\": {\n                \"name\": \"Caroline Polakowska\",\n                \"uuid\": \"0e09900b-491d-413a-a12c-d3062b00c7a3\",\n                \"email\": \"caroline@shotflow.com\"\n            },\n            \"first_weekday\": 1,\n            \"optimised\": 1644444013,\n            \"status\": \"active\",\n            \"api_access\": true,\n            \"indexable_threshold\": 5,\n            \"substatus\": null,\n            \"instance\": null,\n            \"wildcard_queries\": \"t\",\n            \"permissions\": false\n        },\n        {\n            \"uuid\": \"f03cd174-c2dd-4dfb-bf97-2f62b8ab55f7\",\n            \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n            \"name\": \"QA Capture Test\",\n            \"alias\": \"qa_capture_test\",\n            \"description\": null,\n            \"category\": \"brand\",\n            \"modules\": null,\n            \"box_folder\": null,\n            \"created\": 1607529347,\n            \"created_by\": {\n                \"name\": \"Caroline Polakowska\",\n                \"uuid\": \"0e09900b-491d-413a-a12c-d3062b00c7a3\",\n                \"email\": \"caroline@shotflow.com\"\n            },\n            \"first_weekday\": 1,\n            \"optimised\": 1644444383,\n            \"status\": \"active\",\n            \"api_access\": true,\n            \"indexable_threshold\": 5,\n            \"substatus\": null,\n            \"instance\": null,\n            \"wildcard_queries\": \"t\",\n            \"permissions\": false\n        }\n    ]\n}"},{"id":"4d369027-1c2e-4d6b-a240-9e82ea4410b7","name":"/applications/{application uuid}","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 10:31:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"573"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n        \"account_uuid\": \"351cdf10-73ac-4387-9cac-2ba536bd40c4\",\n        \"name\": \"Base QA Capture Master BRAND TEST\",\n        \"alias\": \"base_qa_capture_master_brand_test\",\n        \"description\": \"Hello\",\n        \"status\": \"active\",\n        \"substatus\": \"ps_test\",\n        \"api_access\": true,\n        \"wildcard_queries\": true,\n        \"category\": \"brand\",\n        \"modules\": null,\n        \"box_folder\": 144881606077,\n        \"first_weekday\": 1,\n        \"indexable_threshold\": 7,\n        \"created\": 1582554828,\n        \"created_by\": {\n            \"name\": \"Rebecca Starr\",\n            \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n            \"email\": \"rebecca@shotflow.com\"\n        },\n        \"permissions\": true\n    }\n}"}],"_postman_id":"6c10d33a-fe98-478c-be47-4dd3071f6d82"},{"name":"/applications/{application uuid}/relationships/{relationship uuid}","id":"b56982cf-d4b0-4f8e-a8c2-0b689d8f5679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/{relationship uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Get relationship, if relationship uuid is omitted from the URI then all relationships are returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","relationships","{relationship uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"3f1d18a7-c1ac-415e-bf0f-cce6fd2d6008","name":"/applications/{application uuid}/relationships/{relationship uuid}","originalRequest":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/{relationship uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Oct 2022 15:00:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1590"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"e2d1d7ea-90cd-4b48-94f0-04fc543ac6ec\",\n        \"type\": \"many to many\",\n        \"sort\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n        \"inherit\": false,\n        \"primary_application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n        \"primary_table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n        \"primary_lookup\": \"[48c4f72d-1240-4280-838c-200274d82000]-[8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f]-[0383fd55-07f3-4151-9e2b-1b0a8e4afbab]\",\n        \"related_application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n        \"related_table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n        \"related_lookup\": \"[b5fcd8b6-4746-4428-beb5-129be98ee7f5]-[c691f449-2904-44aa-80a0-9edc011391c6]\",\n        \"relationships\": [],\n        \"record_limit\": 1000,\n        \"primary_lookup_fields\": [\n            {\n                \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"table_name\": \"Shots\",\n                \"field_uuid\": \"48c4f72d-1240-4280-838c-200274d82000\",\n                \"field_name\": \"Title #\",\n                \"field_unique\": false\n            },\n            {\n                \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"table_name\": \"Shots\",\n                \"field_uuid\": \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\",\n                \"field_name\": \"Type\",\n                \"field_unique\": false\n            },\n            {\n                \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"table_name\": \"Shots\",\n                \"field_uuid\": \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\",\n                \"field_name\": \"Status\",\n                \"field_unique\": false\n            }\n        ],\n        \"related_lookup_fields\": [\n            {\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_name\": \"Samples\",\n                \"field_uuid\": \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\",\n                \"field_name\": \"Barcode Value\",\n                \"field_unique\": true\n            },\n            {\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_name\": \"Samples\",\n                \"field_uuid\": \"c691f449-2904-44aa-80a0-9edc011391c6\",\n                \"field_name\": \"Status\",\n                \"field_unique\": false\n            }\n        ]\n    }\n}"}],"_postman_id":"b56982cf-d4b0-4f8e-a8c2-0b689d8f5679"},{"name":"/applications/{application uuid}/tables/{table uuid}","id":"3c2fd555-71e2-42a6-af19-8ec0d2ea21e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Get table, if table uuid is omitted from URI then all tables are returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"fd3c5558-ac63-41a1-9501-08c8cc2602b2","name":"/applications/{application uuid}/tables/{table uuid}","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 10:36:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n            \"name\": \"Product Children\",\n            \"alias\": \"product_children\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Product Children\",\n                \"singular\": \"Product Child\"\n            },\n            \"primary_field_uuid\": \"5e1344fc-595d-4d5f-a0cf-ad7b7d6f922d\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 2,\n            \"forms_total\": 2,\n            \"indexes_total\": \"2\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"5e1344fc-595d-4d5f-a0cf-ad7b7d6f922d\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9a2dea1f-aaff-460a-882a-717da3a9ca5a\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Color Code\",\n                    \"alias\": \"color_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"3769b222-ea3b-407b-8bc0-d26aa7a900d8\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"267d4da4-4f74-4d06-a797-1ec2b2747746\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"601b5392-8a9c-48c6-a799-eae4e9f07f86\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Color\",\n                    \"alias\": \"color\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8b9ec569-3e36-412e-a073-a5557ad81451\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"86753701-103a-4770-8d18-a4f81fbac6ee\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"52f2d187-2118-4e59-8c38-66117e43b145\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"SKU\",\n                    \"alias\": \"sku\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b5b55bc3-c9f9-4bfc-b901-54436f58200f\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"In DC\",\n                    \"alias\": \"in_dc\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c4467542-5ab6-49b3-8432-fa3eb2928646\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"SKU2\",\n                    \"alias\": \"sku2\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"aed4a6ed-66a3-479c-8c41-f8ffca7a1c18\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Testing 3\",\n                    \"alias\": \"testing_3\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9ba6bd8e-1549-4f10-8c9b-7d20e4e5ae8b\",\n                    \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Dropped\",\n                            \"Active\"\n                        ]\n                    },\n                    \"default\": \"active\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"71056d6f-ae8c-448a-9705-98d130cbbc3f\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Class Code\",\n                    \"alias\": \"class_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b678dc62-c2c9-408d-9ced-ea82dc532587\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Contact\",\n                    \"alias\": \"contact\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"90cf838d-11de-4949-8afc-eac932eb6f3d\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Dept Code\",\n                    \"alias\": \"dept_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"44824d09-4f39-4300-8b4f-79c0bb74c5d5\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b681493a-0e68-4e7e-8fbf-fb6b72b68cab\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e22533bc-5d82-4c00-b097-5e15a84e13df\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Floorset\",\n                    \"alias\": \"floorset\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"65e7af98-97db-41bf-b4bc-cf74906a9687\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Priority\",\n                    \"alias\": \"priority\",\n                    \"description\": null,\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6977d441-69c6-4d04-b8d7-2926e5b65157\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Style Code\",\n                    \"alias\": \"style_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a05c1dff-f330-4ffc-8cbe-bbcfd35a27bc\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Style Name\",\n                    \"alias\": \"style_name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fb9e6ee6-6dc9-4031-8655-ebb9091f71d4\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"19595832-e4ac-42b5-9a00-a885321b8ebf\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4bd10741-0467-439e-b6dd-f6186babc794\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"94e6e704-aede-477a-ac4a-c31921f0bb87\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"DeptClassStyle\",\n                    \"alias\": \"deptclassstyle\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7c1009a0-2706-4151-9c2a-045f92b42eff\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Due Date\",\n                    \"alias\": \"due_date\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0f8d57ef-5ed1-46f9-9459-fb9733f74367\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Activated\",\n                            \"Pending\",\n                            \"Discontinued\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n            \"name\": \"Product Parents\",\n            \"alias\": \"product_parents\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Product Parents\",\n                \"singular\": \"Product Parent\"\n            },\n            \"primary_field_uuid\": \"4bd10741-0467-439e-b6dd-f6186babc794\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 1,\n            \"indexes_total\": \"4\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"71056d6f-ae8c-448a-9705-98d130cbbc3f\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Class Code\",\n                    \"alias\": \"class_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b678dc62-c2c9-408d-9ced-ea82dc532587\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Contact\",\n                    \"alias\": \"contact\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"90cf838d-11de-4949-8afc-eac932eb6f3d\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Dept Code\",\n                    \"alias\": \"dept_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"44824d09-4f39-4300-8b4f-79c0bb74c5d5\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b681493a-0e68-4e7e-8fbf-fb6b72b68cab\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e22533bc-5d82-4c00-b097-5e15a84e13df\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Floorset\",\n                    \"alias\": \"floorset\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"65e7af98-97db-41bf-b4bc-cf74906a9687\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Priority\",\n                    \"alias\": \"priority\",\n                    \"description\": null,\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6977d441-69c6-4d04-b8d7-2926e5b65157\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Style Code\",\n                    \"alias\": \"style_code\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a05c1dff-f330-4ffc-8cbe-bbcfd35a27bc\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Style Name\",\n                    \"alias\": \"style_name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fb9e6ee6-6dc9-4031-8655-ebb9091f71d4\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"19595832-e4ac-42b5-9a00-a885321b8ebf\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4bd10741-0467-439e-b6dd-f6186babc794\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"94e6e704-aede-477a-ac4a-c31921f0bb87\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"DeptClassStyle\",\n                    \"alias\": \"deptclassstyle\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7c1009a0-2706-4151-9c2a-045f92b42eff\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Due Date\",\n                    \"alias\": \"due_date\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0f8d57ef-5ed1-46f9-9459-fb9733f74367\",\n                    \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Activated\",\n                            \"Pending\",\n                            \"Discontinued\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n            \"name\": \"Shoots\",\n            \"alias\": \"shoots\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Shoots\",\n                \"singular\": \"Shoot\"\n            },\n            \"primary_field_uuid\": \"315a0b8b-fa49-4d5c-a44c-6e1d3e54d682\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"3\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"315a0b8b-fa49-4d5c-a44c-6e1d3e54d682\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"80a1323e-5616-412d-b2d9-69a11a70a110\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"24f49e31-1367-481c-857a-2ab230deb7d1\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"683816e0-bc24-4dd3-93b9-f7166d539048\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"bdf52cb1-f755-4028-a734-e0b50ec427cc\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"85fc7959-ffbb-4150-b9a2-a0e5d6015389\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"291e7b88-83de-4364-b2ac-2ed1339330a8\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Completed\",\n                            \"Awaiting Studio Assignment\",\n                            \"Cancelled\",\n                            \"Ready\",\n                            \"On Hold\",\n                            \"In Progress\",\n                            \"Planning\"\n                        ]\n                    },\n                    \"default\": \"planning\",\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c1829790-dd3e-4a2f-8c53-285dd344fa7d\",\n                    \"table_uuid\": \"addcc1a5-c330-40c6-b3da-423fdd07b1a5\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Studio\",\n                            \"Location\"\n                        ]\n                    },\n                    \"default\": \"studio\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n            \"name\": \"Shot Lists\",\n            \"alias\": \"shot_lists\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Shot Lists\",\n                \"singular\": \"Shot List\"\n            },\n            \"primary_field_uuid\": \"19cbfb4f-bb0b-4410-866f-50c66a77d65e\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 1,\n            \"forms_total\": 4,\n            \"indexes_total\": \"4\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"19cbfb4f-bb0b-4410-866f-50c66a77d65e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"266fc951-b87f-41b0-bd1a-cb3ae2d4fbc4\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Groupings - Sort - Parameter\",\n                    \"alias\": \"groupings__sort__parameter\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"be30b74e-f8d9-4a11-a378-99343549fced\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Products - Sort - Parameter\",\n                    \"alias\": \"products__sort__parameter\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9695c191-e06e-4737-95a8-00209f9aa6cf\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Samples - Sort - Parameter\",\n                    \"alias\": \"samples__sort__parameter\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"41562c3e-db1b-4088-9c19-2f3a4ad984ea\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Capture - Subfolder - Naming Format\",\n                    \"alias\": \"capture__subfolder__naming_format\",\n                    \"description\": \"Defines the naming and organizational structure of local capture subfolders. Example: [Product Parents.Season]\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": \"[Product Children.SKU]\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"3f7a2da7-c8a9-4fb2-87f4-bd853cc02a51\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Retrieval - Reassign\",\n                    \"alias\": \"shots__retrieval__reassign\",\n                    \"description\": \"Utilized in conjunction with other Shots - Retrieval fields to specify which Shot(s) are valid for retrieval/auto-assignment on this Shot List\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"706e8696-741d-4f23-87fb-824080c1fa4e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9e62800d-5bc3-48a0-84e2-047aadd25117\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c159d251-6a43-49ac-9fb9-7d3a5bca8646\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Capture - Naming Format\",\n                    \"alias\": \"capture__naming_format\",\n                    \"description\": \"Defines the naming token(s) for captures in Capture One. Example: [Name]_[Camera Counter]\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": \"[Name]_[4 Digit Counter]\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"d3d2ebac-f82f-4cf0-a43a-0e62ef9a6026\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6450692a-58c3-4482-be0b-395ce8a0994f\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"18795283-9be9-46bd-b22c-d2cd8dc4cbd7\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Completion - Locked\",\n                    \"alias\": \"shots__completion__locked\",\n                    \"description\": \"Completed Shots can no longer be selected, connected, or updated in SF capture if this value is set to \\\"Y\\\"\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5af3faf5-8961-4856-87a9-7236fa06ea8d\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Samples - Location - Update to On Set\",\n                    \"alias\": \"samples__location__update_to_on_set\",\n                    \"description\": \"When enabled, Samples scanned for Shot Retrieval and/or the Related Products panel (managing Groupings) will have their Location auto-updated to On Set\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"523ecb46-0fe5-4f73-b96e-7263aac39f80\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Accessories - Add\",\n                    \"alias\": \"accessories__add\",\n                    \"description\": \"Enables capture team to add Accessories via scanning of barcode value(s) and/or entry of Product IDs for adding to XMP metadata\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fc52078b-59df-4be5-98a6-afbfc4d87cbd\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Sort - Parents - Descending\",\n                    \"alias\": \"shots__sort__parents__descending\",\n                    \"description\": \"When enabled, parent Shots will appear in descending order (instead of ascending order) based on the value located in Sort Order Shots\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f44a5b83-857b-4cd9-b0a6-c451f111fcc2\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Add\",\n                    \"alias\": \"shots__add\",\n                    \"description\": \"Enables capture team to add new Shots locally\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6e906cf3-250c-435e-903f-2690b41cb512\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"This value will be displayed in the ShotFlow capture List Panel to identify the Shot List for the capture team\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"12410755-396c-453a-bb60-f00d7ce9dc65\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Talent - Manage from Set\",\n                    \"alias\": \"talent__manage_from_set\",\n                    \"description\": \"Enable Capture team to add/remove and activate/deactivate Talent resources for this Shot List locally\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8168aa7e-6283-419e-b35c-d4c980567fd8\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Cancel\",\n                    \"alias\": \"shots__cancel\",\n                    \"description\": \"Enables capture team to cancel Shots locally that will not be completed\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a20e2ff0-397b-4dcb-ac57-07eed6ff261c\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Clone\",\n                    \"alias\": \"shots__clone\",\n                    \"description\": \"Enables capture team to clone existing Shots locally to create new angles\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c7dc1e80-b73a-4864-992b-3032ca22120e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Completion - Requires Captures\",\n                    \"alias\": \"shots__completion__requires_captures\",\n                    \"description\": \"When enabled, a Shot cannot be marked completed until at least one capture is recorded. When disabled, Shots can be marked completed with 0 captures\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4bf7794b-50f3-4214-a46f-f5b6f61cd2c9\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Sort - Children - Descending\",\n                    \"alias\": \"shots__sort__children__descending\",\n                    \"description\": \"When enabled, children Shots will appear in descending order (instead of ascending order) based on the value located in Sort Order SubShots\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1242db9d-b7ff-4891-8483-72950a91a10c\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Style Guides - Data - Download on sync\",\n                    \"alias\": \"style_guides__data__download_on_sync\",\n                    \"description\": \"Enables local caching of all linked Style Guide data for all Shots in this Shot List. This may significantly increase syncing time, but will ensure Style Guide data is available for offline shooting\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"64761175-27a2-42ae-b992-bac36bb4e7b7\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Sort - Children - Parameter\",\n                    \"alias\": \"shots__sort__children__parameter\",\n                    \"description\": \"The value entered in this field determines how the child Shots of a parent Shot are ordered in the ShotFlow capture List Panel for this Set List. Examples may include Shot Title, Product SKU, Shot Status\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2866277c-268f-47b7-a7f3-45cc87513f0c\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Capture - Subfolder - Create\",\n                    \"alias\": \"capture__subfolder__create\",\n                    \"description\": \"Determines if there will be subfolders auto-generated by ShotFlow capture within the local Capture One Session's designated capture folder\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4852ecff-d08f-42b2-ae04-2e4887a1e05e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Completion - Inherit from Shot List\",\n                    \"alias\": \"shots__completion__inherit_from_shot_list\",\n                    \"description\": \"When enabled, the capture team can mark a Shot List as Completed, which changes all the Shots on the Shot List to Completed as well, regardless of their current Status. When disabled, a Shot List cannot be marked Completed until all Shots are individually marked as Completed\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8e6e1fac-0117-4ab7-875d-c47353fd3be8\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Sort - Parents - Parameter\",\n                    \"alias\": \"shots__sort__parents__parameter\",\n                    \"description\": \"The value entered in this field determines how Shots are ordered in the ShotFlow capture List Panel for this Shot List. Examples may include Shot Title, Product SKU, Shot Status\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"cd7c8f2d-dfe9-49aa-a27c-5aed66acfdd7\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": \"Currently unused in ShotFlow capture, but reserved for future state development where ShotFlow capture will be integrated into other hardware/software solutions (e.g. OrbitVU, StyleShoots, Looklet, etc.) and this field will be used to drive ShotFlow capture automated behavior\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": \"Laydown\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f0773db5-0320-45e3-9f7c-bb282daed67d\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Manual Date and Time\",\n                    \"alias\": \"manual_date_and_time\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"43df8d07-00b6-44d7-8bf1-b9b5624d470e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Priority - Numeric\",\n                    \"alias\": \"priority__numeric\",\n                    \"description\": null,\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"4\",\n                                \"conditions\": {\n                                    \"2a7990c4-0b06-4dd1-a13a-cc09189e38f6\": {\n                                        \"$eq\": \"Immediate\"\n                                    }\n                                }\n                            },\n                            {\n                                \"value\": \"3\",\n                                \"conditions\": {\n                                    \"2a7990c4-0b06-4dd1-a13a-cc09189e38f6\": {\n                                        \"$eq\": \"High\"\n                                    }\n                                }\n                            },\n                            {\n                                \"value\": \"2\",\n                                \"conditions\": {\n                                    \"2a7990c4-0b06-4dd1-a13a-cc09189e38f6\": {\n                                        \"$eq\": \"Medium\"\n                                    }\n                                }\n                            },\n                            {\n                                \"value\": \"1\",\n                                \"conditions\": {\n                                    \"2a7990c4-0b06-4dd1-a13a-cc09189e38f6\": {\n                                        \"$eq\": \"Low\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": \"0\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fef1ee90-20bf-492d-aec3-5f6f7db1391b\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Product Centric Items - Sort - Retrieval Order\",\n                    \"alias\": \"product_centric_items__sort__retrieval_order\",\n                    \"description\": null,\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b4386ebb-b006-4d4d-876f-e4d61f5357c8\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Yes No Dynamic\",\n                    \"alias\": \"yes_no_dynamic\",\n                    \"description\": null,\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": false,\n                                \"conditions\": {\n                                    \"523ecb46-0fe5-4f73-b96e-7263aac39f80\": {\n                                        \"$eq\": true\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"184d1214-2a3c-4abb-8be4-b4c152799755\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Currency\",\n                    \"alias\": \"currency\",\n                    \"description\": null,\n                    \"type\": \"currency\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7c7c8194-a03c-4734-b5d4-4b8c74f7df57\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Duration\",\n                    \"alias\": \"duration\",\n                    \"description\": null,\n                    \"type\": \"duration\",\n                    \"settings\": {\n                        \"format\": \"mm:ss\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5e419fce-3d82-4d7f-8d0f-43bef7d398ca\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"URL\",\n                    \"alias\": \"url\",\n                    \"description\": null,\n                    \"type\": \"url\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7813e78a-dedd-48e3-8447-aa65c179a2d3\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Dynamic testing field\",\n                    \"alias\": \"dynamic_testing_field\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": null,\n                        \"query\": null,\n                        \"filter\": null,\n                        \"aggregate\": true,\n                        \"delimiter\": null,\n                        \"relationship\": \"9526567d-6fbe-4019-9159-c6d9436de434\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f7dfef12-d3b1-4661-b3d7-a05963d346ea\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Barcode\",\n                    \"alias\": \"barcode\",\n                    \"description\": null,\n                    \"type\": \"barcode\",\n                    \"settings\": {\n                        \"text\": true,\n                        \"type\": \"C128\",\n                        \"width\": 1,\n                        \"height\": 30,\n                        \"length\": 10\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"44ed7c83-7ce9-4f8b-a369-454403f7269e\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"File\",\n                    \"alias\": \"file\",\n                    \"description\": null,\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"costyle\",\n                            \"csv\",\n                            \"pdf\",\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\",\n                            \"xlsx\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"90a8671a-4f46-4b25-b730-ce14bcce8699\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Template\",\n                    \"alias\": \"template\",\n                    \"description\": \"Flags this Shot List as a template for iOS mobile app and for filtering views\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"80b096e5-f557-47e3-a390-ccc51c17d202\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Goal (Groupings)\",\n                    \"alias\": \"goal_groupings\",\n                    \"description\": \"Contains the target number of Groupings to be completed on this Shot List\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4a9d98f6-81a5-4bcf-b144-998d1b95332b\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Goal (Products)\",\n                    \"alias\": \"goal_products\",\n                    \"description\": \"Contains the target number of Products to be completed on this Shot List\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"45c28d49-16a5-44d7-8ff3-085b34436673\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Goal (Samples)\",\n                    \"alias\": \"goal_samples\",\n                    \"description\": \"Contains the target number of Samples to be completed on this Shot List\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8b88c663-d13f-4bd2-9d50-019280dde431\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Goal (Shots)\",\n                    \"alias\": \"goal_shots\",\n                    \"description\": \"Contains the target number of Shots to be completed on this Shot List\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ff78ed29-e003-4578-a925-58964116876a\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Goal (Time)\",\n                    \"alias\": \"goal_time\",\n                    \"description\": \"Contains the target time for completion of this Shot List\",\n                    \"type\": \"duration\",\n                    \"settings\": {\n                        \"format\": \"h:mm\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"52867b26-ef5b-43d7-a0c6-1d97da95374a\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Products - Mode - Manage from Set\",\n                    \"alias\": \"products__mode__manage_from_set\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Update Grouping Record\",\n                            \"Clone Grouping Record\",\n                            \"Disabled\",\n                            \"New Grouping Record\"\n                        ]\n                    },\n                    \"default\": \"update grouping record\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6763d3ce-07e2-4097-a4cb-6b45e41de902\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Style Guides - Mode - Display\",\n                    \"alias\": \"style_guides__mode__display\",\n                    \"description\": \"Determines what Style Guides will be displayed based on their relationship to specific objects.\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Direct Product Child Only\",\n                            \"Direct Product Parent Only\",\n                            \"Grouping Only\",\n                            \"Any\",\n                            \"Any Direct Product\",\n                            \"Grouping & Indirect Product Children\",\n                            \"Disabled\",\n                            \"Shot Only\"\n                        ]\n                    },\n                    \"default\": \"any\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"70a9b137-8c0b-4d5d-bd4c-4ce814af2632\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Retrieval - Type\",\n                    \"alias\": \"shots__retrieval__type\",\n                    \"description\": \"Utilized in conjunction with Retrieval Mode to specify which Shot Type(s) are valid for retrieval on this Shot List\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"On-Figure\",\n                            \"Laydown\",\n                            \"Pin-Up\",\n                            \"Burger\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2a7990c4-0b06-4dd1-a13a-cc09189e38f6\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Priority\",\n                    \"alias\": \"priority\",\n                    \"description\": \"Determines the display order of the Shot List in ShotFlow capture. Shot Lists are automatically listed in the order of the highest priority at the top, then in descending priority order\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Immediate\",\n                            \"Low\",\n                            \"High\",\n                            \"Medium\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"300a0890-cf46-4a92-bc92-acb5b9ba4bc1\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Retrieval - Status\",\n                    \"alias\": \"shots__retrieval__status\",\n                    \"description\": \"Utilized in conjunction with other Shots - Retrieval fields to specify which Shot(s) are valid for retrieval/auto-assignment on this Shot List\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Awaiting Samples-Awaiting Assignment-Ready\",\n                            \"Awaiting Samples-Awaiting Assignment-Ready-In Progress\",\n                            \"Ready Only\",\n                            \"Cancelled Only\",\n                            \"Any\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"42331ba4-fe30-467b-a4be-6b0f1f6ed776\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Shots - Retrieval - Mode\",\n                    \"alias\": \"shots__retrieval__mode\",\n                    \"description\": \"Utilized in conjunction with other Shots - Retrieval fields to specify which Shot(s) are valid for retrieval/auto-assignment on this Shot List\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Disabled\",\n                            \"Any\",\n                            \"Product Child\",\n                            \"Groupings\",\n                            \"Sample\"\n                        ]\n                    },\n                    \"default\": \"any\",\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"44ad9e2a-a6f2-4b0e-9ec2-75ea997eca92\",\n                    \"table_uuid\": \"7cbcac9f-ce3d-4e06-8075-d422f2c00c9d\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": \"Provides visibility to the production stage of the Shot List, and determines whether this Shot List is visible in ShotFlow capture\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Assigned\",\n                            \"Awaiting Samples\",\n                            \"Ready\",\n                            \"In Progress\",\n                            \"Completed\",\n                            \"Awaiting Assignment\",\n                            \"Cancelled\"\n                        ]\n                    },\n                    \"default\": \"ready\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n            \"name\": \"Shot Reference Data\",\n            \"alias\": \"shot_reference_data\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Shot Reference Data\",\n                \"singular\": \"Shot Reference Data\"\n            },\n            \"primary_field_uuid\": \"393b2ca7-8112-4f29-8971-6d8894535f15\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"1\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"393b2ca7-8112-4f29-8971-6d8894535f15\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fdceab7d-46f0-4002-8645-761dd130589b\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Text (Dynamic)\",\n                    \"alias\": \"text_dynamic\",\n                    \"description\": \"Created by Caroline.\",\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"Pass\",\n                                \"conditions\": {\n                                    \"935211c1-3e24-4e3b-9e04-7eac1c84004d\": {\n                                        \"$nem\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": null\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4d4f8861-01aa-4826-8a99-642e12a08e51\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Related Records (Dy)\",\n                    \"alias\": \"related_records_dy\",\n                    \"description\": \"Created by Caroline.\",\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\",\n                        \"query\": null,\n                        \"filter\": null,\n                        \"aggregate\": false,\n                        \"delimiter\": \",\",\n                        \"relationship\": \"20315b78-f5d4-4dea-b0f5-8aff97349103\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8fabea9c-61c9-4929-8718-4d72c2cefb7a\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Ya No (Dy)\",\n                    \"alias\": \"ya_no_dy\",\n                    \"description\": \"Created by Caroline\",\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": true,\n                                \"conditions\": {\n                                    \"18f0939f-3eff-49cf-8dc1-06ceaeddb3f3\": {\n                                        \"$neq\": \"0\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a2c41c59-fcf1-4c21-b38e-eca0477062cd\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fb28cbbb-e47a-4efa-97fd-ba720e01e771\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"18f0939f-3eff-49cf-8dc1-06ceaeddb3f3\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Aspect Ratio\",\n                    \"alias\": \"aspect_ratio\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a40a6560-f64c-4106-af72-94f8086172ff\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2c3859d6-c509-40c8-8a73-6876a6e64ea4\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"935211c1-3e24-4e3b-9e04-7eac1c84004d\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Unique ID\",\n                    \"alias\": \"unique_id\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f26aa2f1-4dd0-4d0a-8365-65c73b6a9e8e\",\n                    \"table_uuid\": \"ea61ab07-c0d5-408b-ae45-e397bd266bdf\",\n                    \"name\": \"Multiple Choice (Dy)\",\n                    \"alias\": \"multiple_choice_dy\",\n                    \"description\": \"Created by Caroline\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"A\",\n                            \"B\",\n                            \"C\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n            \"name\": \"Assets\",\n            \"alias\": \"assets\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Assets\",\n                \"singular\": \"Asset\"\n            },\n            \"primary_field_uuid\": \"6cc69d57-e3d2-43e8-8a5d-0457da1138dc\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 7,\n            \"forms_total\": 2,\n            \"indexes_total\": \"4\",\n            \"labels_total\": 3,\n            \"fields\": [\n                {\n                    \"uuid\": \"6cc69d57-e3d2-43e8-8a5d-0457da1138dc\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5d12aa70-33aa-4d1b-a573-5f1ed6020b2f\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Asset UUID\",\n                    \"alias\": \"asset_uuid\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"d52266a5-a2e3-4714-a030-26e24fe75244\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Barcode 2\",\n                    \"alias\": \"barcode_2\",\n                    \"description\": null,\n                    \"type\": \"barcode\",\n                    \"settings\": {\n                        \"text\": true,\n                        \"type\": \"C128\",\n                        \"width\": 1,\n                        \"height\": 30,\n                        \"length\": 10\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"bbc4d544-022c-44bc-be6a-7b64bc036ab7\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"62690bc0-4ca9-4113-9f5d-145b1ccf6f8c\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ed2a86fd-8e16-472d-bc08-dead51b63698\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Notes\",\n                    \"alias\": \"notes\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"10871c9c-525b-40b7-8246-63541a986fb5\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Number\",\n                    \"alias\": \"number\",\n                    \"description\": null,\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8d4b8c48-73d5-4300-949b-151a8740484a\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"3ca58986-20ff-43f8-94ec-09f1e00cb31b\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f8bc3f01-77f8-48ea-a121-25cb9fff8b5d\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Capture UUID\",\n                    \"alias\": \"capture_uuid\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e5043b3d-379a-4cdb-9173-79e50901873b\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Asset Preview\",\n                    \"alias\": \"asset_preview\",\n                    \"description\": null,\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"pdf\",\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e347ae9f-c6ee-4018-88ce-8e3e0074e301\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Text here\",\n                    \"alias\": \"text_here\",\n                    \"description\": null,\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"OK\",\n                                \"conditions\": {\n                                    \"10871c9c-525b-40b7-8246-63541a986fb5\": {\n                                        \"$eq\": \"2\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": \"NO\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a234cab4-11a9-4538-995a-1441f185e9ab\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"New Field\",\n                    \"alias\": \"new_field\",\n                    \"description\": \"New description. Forty forty\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c5bfb683-5825-474b-af93-821e58755515\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Yes no\",\n                    \"alias\": \"yes_no\",\n                    \"description\": \"Testing (Art Director)\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9a461b0d-7d4b-4e54-968a-959bba779c18\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Related Field Here\",\n                    \"alias\": \"related_field_here\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": null,\n                        \"query\": {\n                            \"$and\": [\n                                {\n                                    \"3bd13e27-b8f8-4e27-b882-406849052993\": {\n                                        \"$nct\": \"caroline\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"filter\": null,\n                        \"aggregate\": true,\n                        \"delimiter\": null,\n                        \"relationship\": \"4c7d1b2d-b6fb-4853-b629-a668f6274f24\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f20f6189-abf1-4edf-a554-97a307c1f29f\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Text Type\",\n                    \"alias\": \"text_type\",\n                    \"description\": \"Identifies the type of Asset, based on the file extension (TIFF, JPEG, etc.)\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f23148d3-52e0-42c4-9380-d78d284c4466\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Testing field to delete\",\n                    \"alias\": \"testing_field_to_delete\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"cc64bdd1-2ce8-4c47-a55e-d9f216063a70\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"No and Yes\",\n                    \"alias\": \"no_and_yes\",\n                    \"description\": null,\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": false,\n                                \"conditions\": {\n                                    \"8d2f6d17-2520-4b86-a106-1713c7e2164c\": {\n                                        \"$gte\": \"1\"\n                                    }\n                                }\n                            },\n                            {\n                                \"value\": true,\n                                \"conditions\": {\n                                    \"f23148d3-52e0-42c4-9380-d78d284c4466\": {\n                                        \"$em\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4cf2ac6f-91b5-4c4a-b25d-13c55c9aa4c4\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Actual File Type Field\",\n                    \"alias\": \"actual_file_type_field\",\n                    \"description\": \"History flag\",\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"costyle\",\n                            \"csv\",\n                            \"pdf\",\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\",\n                            \"xlsx\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1d2d4762-bfa2-469b-b159-c0af1c399ad1\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Asset URL\",\n                    \"alias\": \"asset_url\",\n                    \"description\": null,\n                    \"type\": \"url\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fcb73a50-60e7-40d3-8e3e-f1d3e99fdab6\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Cost\",\n                    \"alias\": \"cost\",\n                    \"description\": null,\n                    \"type\": \"currency\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"64217cbc-2982-4da2-a74f-f37e9477fd75\",\n                    \"table_uuid\": \"ccbeb34c-861d-463d-b128-cfc16fdc6638\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Pending Clipping Path\",\n                            \"Deliveredd\",\n                            \"Pending Approval\",\n                            \"Pending Upload\",\n                            \"Pending Retouching\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n            \"name\": \"Campaigns/Projects\",\n            \"alias\": \"campaignsprojects\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Campaigns/Projects\",\n                \"singular\": \"Campaign/Project\"\n            },\n            \"primary_field_uuid\": \"21736872-4ed6-410c-a065-3cb41ecdc20a\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 1,\n            \"indexes_total\": \"3\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"21736872-4ed6-410c-a065-3cb41ecdc20a\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"333806cc-f551-4859-a012-7edfda5660fd\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6a23e9d3-c3f7-4642-9834-bc0c8bad07eb\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"dd0665a5-350b-4b2a-a2da-2051692f1155\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Names\",\n                    \"alias\": \"names\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"14dc734a-e8c2-4815-9163-cf0f17034fbe\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6045278d-29bf-47f0-a50a-27fba58369a2\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4c26d40e-1964-45dd-a714-969de5a327bc\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Inactive\",\n                            \"Planning\",\n                            \"Active\"\n                        ]\n                    },\n                    \"default\": \"planning\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"714ab179-57f5-4d31-aad6-505df34b0e15\",\n                    \"table_uuid\": \"1c1d9783-b858-41be-a33a-d3d2f9defb7b\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Seasonal Launch\",\n                            \"Special Project\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n            \"name\": \"Jobs/Channels\",\n            \"alias\": \"jobschannels\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Jobs/Channels\",\n                \"singular\": \"Job/Channel\"\n            },\n            \"primary_field_uuid\": \"ea983e45-0686-4ac5-881e-fb4fb1b49a27\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"3\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"ea983e45-0686-4ac5-881e-fb4fb1b49a27\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a4e333d6-e06d-4a7a-81d3-87b3032e90e4\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fb6c34e9-76cc-45c6-8260-f387c06496e9\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4537ede1-814f-432a-844d-0e6fcd94929d\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9dce52c2-7a73-45af-b2f3-b08adefc0e21\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1367a556-52ea-4b7a-9eef-520dfe58ebe9\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"629458cb-d884-4639-8173-6f63ff23b5d5\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Planning\",\n                            \"Inactive\"\n                        ]\n                    },\n                    \"default\": \"planning\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2e92c8d5-8387-4206-a900-aa084907a3b5\",\n                    \"table_uuid\": \"e7267b92-cef9-4d4a-b075-ca8183b9cd6d\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Print\",\n                            \"eCommerce\",\n                            \"Social\",\n                            \"Email\"\n                        ]\n                    },\n                    \"default\": \"ecommerce\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n            \"name\": \"Groupings\",\n            \"alias\": \"groupings\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Groupings\",\n                \"singular\": \"Grouping\"\n            },\n            \"primary_field_uuid\": \"a72233eb-751b-427f-9db2-4ea964016233\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 1,\n            \"forms_total\": 0,\n            \"indexes_total\": \"3\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"a72233eb-751b-427f-9db2-4ea964016233\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"3060c037-a8ad-4be8-a964-9a99c8928262\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Text Dynamic\",\n                    \"alias\": \"text_dynamic\",\n                    \"description\": null,\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"Success\",\n                                \"conditions\": {\n                                    \"b9009769-31ba-4072-a60d-42a5b56c9dda\": {\n                                        \"$nem\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": null\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"91b7f1eb-1028-4e29-862b-aa06ea6a3250\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"953a48cc-d0a1-4814-8053-9a07d36c7f62\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4ef3b087-b981-43cf-8d1d-e19ad50ec4de\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0d947841-fb39-47d2-9b8b-1e0d94bf1319\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2548dc9d-d82f-438e-a9a3-bf1241d9ea31\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Unique ID\",\n                    \"alias\": \"unique_id\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f9e0d71f-8617-44db-b6b1-03f4fc872af8\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Description\",\n                    \"alias\": \"description\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5ee0dcaa-9800-484e-be15-34f4d888dfd0\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Styling Notes\",\n                    \"alias\": \"styling_notes\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b9009769-31ba-4072-a60d-42a5b56c9dda\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f4e96a51-fc5d-4a34-9722-a5c35bc7a74c\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Reference Image\",\n                    \"alias\": \"reference_image\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"pdf\",\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"468a8268-169a-4012-99a7-0c7b96671e3b\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Related Product Children\",\n                    \"alias\": \"related_product_children\",\n                    \"description\": \"lists the related Product Children in Grouping order\",\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": \"52f2d187-2118-4e59-8c38-66117e43b145\",\n                        \"query\": null,\n                        \"filter\": null,\n                        \"aggregate\": false,\n                        \"delimiter\": \",\",\n                        \"relationship\": \"ebb9a687-a7f7-4d64-95dd-97b6ee20af5a\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"942c0264-607e-4675-a3da-5c26ad5cf2be\",\n                    \"table_uuid\": \"ac28e107-6d2e-4acd-a5aa-cea8acc71382\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Inactive\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n            \"name\": \"Requests\",\n            \"alias\": \"requests\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Requests\",\n                \"singular\": \"Request\"\n            },\n            \"primary_field_uuid\": \"4574047c-327b-4578-ab70-d4a022bb585c\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 1,\n            \"forms_total\": 0,\n            \"indexes_total\": \"1\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"4574047c-327b-4578-ab70-d4a022bb585c\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"67068322-9216-43c2-8239-bebe872de10a\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"465e8650-ebd4-4fab-ad17-04e848c86def\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"d8d71b86-9f7c-4904-8301-82921d23263a\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"51d87cae-b063-4ace-9681-008da80abc84\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"964c90f9-6cfe-4f49-82c5-7c285552c9d8\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Unique ID\",\n                    \"alias\": \"unique_id\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1f6486ab-7669-4c34-ab2d-1ff984f019a5\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Awaiting Assignment\",\n                    \"alias\": \"awaiting_assignment\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": null,\n                        \"query\": {\n                            \"$and\": [\n                                {\n                                    \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": {\n                                        \"$eq\": \"Awaiting Assignment\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"filter\": null,\n                        \"aggregate\": true,\n                        \"delimiter\": null,\n                        \"relationship\": \"491b09e4-8ede-410e-a0c3-7a18b2e0eed0\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"720e9f53-8802-46af-a308-9d451372c6fa\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Approved\",\n                            \"Pending Approval\",\n                            \"Pending Review\",\n                            \"In Production\",\n                            \"Completed\"\n                        ]\n                    },\n                    \"default\": \"pending review\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c376a5a0-e3da-4fcb-8373-6622967f6786\",\n                    \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": \"Describes the type of Request, in order to distinguish and sort between various types\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"New Photography\",\n                            \"Reshoot\",\n                            \"VSI\"\n                        ]\n                    },\n                    \"default\": \"new photography\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n            \"name\": \"Samples\",\n            \"alias\": \"samples\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Samples\",\n                \"singular\": \"Sample\"\n            },\n            \"primary_field_uuid\": \"5ccb21e5-5027-440f-af96-6a2295234d71\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 7,\n            \"forms_total\": 2,\n            \"indexes_total\": \"4\",\n            \"labels_total\": 1,\n            \"fields\": [\n                {\n                    \"uuid\": \"5ccb21e5-5027-440f-af96-6a2295234d71\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"78c2654b-14b8-4238-9261-d83c124d118f\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Reference Image\",\n                    \"alias\": \"reference_image\",\n                    \"description\": \"Required by Samples & Styling mobile app\",\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"pdf\",\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e42b678f-7b31-405f-b253-2b3c04296233\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Shot Statuses\",\n                    \"alias\": \"shot_statuses\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\",\n                        \"query\": null,\n                        \"filter\": null,\n                        \"aggregate\": false,\n                        \"delimiter\": \",\",\n                        \"relationship\": \"e2d1d7ea-90cd-4b48-94f0-04fc543ac6ec\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"988797a1-da61-4c4a-91ed-7f796509ccf2\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ef556630-fc3e-4c81-8134-9ea7063c5203\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b58d4e60-415d-45d5-ad99-e46aa0af3174\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Barcode Value\",\n                    \"alias\": \"barcode_value\",\n                    \"description\": null,\n                    \"type\": \"barcode\",\n                    \"settings\": {\n                        \"text\": true,\n                        \"type\": \"C128\",\n                        \"width\": 1,\n                        \"height\": 30,\n                        \"length\": 10\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"aba5c3a3-aae6-4550-819e-a67a910f4167\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Studio Day Received\",\n                    \"alias\": \"studio_day_received\",\n                    \"description\": \"Required by Samples & Styling mobile app\",\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"741fc317-6083-4f63-97e9-bab8f357bc80\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Number\",\n                    \"alias\": \"number\",\n                    \"description\": null,\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"d952074b-8943-498c-8f1e-6a8e3b9e69a3\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Studio Date Received\",\n                    \"alias\": \"studio_date_received\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM-DD-YYYY h:mm A\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"be20c42b-460e-4e9f-9f6d-123eb0ca06b4\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Notes\",\n                    \"alias\": \"notes\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Barcode Text\",\n                    \"alias\": \"barcode_text\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4705ead2-e46d-4732-b682-b0d1a1e9862f\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Sent\",\n                    \"alias\": \"sent\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8fa972a1-0b86-45d1-85c0-2adf9085e839\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Integer (New)\",\n                    \"alias\": \"integer_new\",\n                    \"description\": null,\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5d06d061-36c8-499f-b1f1-e3395a372766\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Text with Default\",\n                    \"alias\": \"text_with_default\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": \"Test 123\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"183e15a9-4330-4fda-a8a9-8c504c377afd\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Location\",\n                    \"alias\": \"location\",\n                    \"description\": \"Required by Samples & Styling mobile app\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Prep Area\",\n                            \"Studio\",\n                            \"On Set\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": true,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Decimal\",\n                    \"alias\": \"decimal\",\n                    \"description\": null,\n                    \"type\": \"decimal\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a14dbdad-6c36-46b4-a406-c6a2afffc2ed\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Text Dynamic\",\n                    \"alias\": \"text_dynamic\",\n                    \"description\": null,\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"Yes\",\n                                \"conditions\": {\n                                    \"90cf838d-11de-4949-8afc-eac932eb6f3d\": {\n                                        \"$em\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": null\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Size\",\n                    \"alias\": \"size\",\n                    \"description\": \"Supports defining different sizing categories or values for workflows where Sample Size is relevant\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Plus\",\n                            \"Regular\"\n                        ]\n                    },\n                    \"default\": \"regular\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": \"Supports defining different typing categories or values for workflows where Sample Type is relevant\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Sales\",\n                            \"DC Inventory\",\n                            \"TOP\",\n                            \"Pre-production\"\n                        ]\n                    },\n                    \"default\": \"top\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c691f449-2904-44aa-80a0-9edc011391c6\",\n                    \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Awaiting Assignment\",\n                            \"Assigned\",\n                            \"Received\",\n                            \"Requested\",\n                            \"Delivered\",\n                            \"In Transit\",\n                            \"Sold\",\n                            \"Ready\",\n                            \"Cancelled\",\n                            \"Missing\",\n                            \"Returned\",\n                            \"In Production\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n            \"name\": \"Shipments\",\n            \"alias\": \"shipments\",\n            \"description\": \"Brand-originated Shipments\",\n            \"terms\": {\n                \"plural\": \"Shipments\",\n                \"singular\": \"Shipment\"\n            },\n            \"primary_field_uuid\": \"09e74b9b-b9c5-4a66-878d-816725435f8d\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 1,\n            \"indexes_total\": \"3\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"09e74b9b-b9c5-4a66-878d-816725435f8d\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fc8af7d6-47a3-4d3e-a763-41064099d3fd\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"New\",\n                    \"alias\": \"new\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0a90821c-3fe4-46ad-b270-aa313924f346\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ecab3efd-4100-43c4-a516-390cfeddccce\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f0996519-ff82-48cd-8bfa-5b511656c205\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Recipient\",\n                    \"alias\": \"recipient\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"12f2b33b-8d25-495f-a86f-e7dfd3364c45\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Description\",\n                    \"alias\": \"description\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"55e15de7-46e1-4b3f-9dfa-495fe40480a3\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Carrier\",\n                    \"alias\": \"carrier\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"649f25f7-8d55-443b-9188-6b10bb75c17b\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b0838bf1-0b0c-49a1-98ed-7043cf85def2\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fda634c3-bb84-43e5-9d76-ed655be9582b\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8072eb2e-a2d5-4776-8d66-620def9d4f82\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Sender\",\n                    \"alias\": \"sender\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"cf70eeb5-8624-434c-a94a-c2155d79aee4\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Tracking Number\",\n                    \"alias\": \"tracking_number\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"00c5b8e5-21c8-4b81-b3d6-c73f3daaa232\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"New Number\",\n                    \"alias\": \"new_number\",\n                    \"description\": null,\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"183ff3a4-07a8-479d-b860-998de3a77b4b\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Boxed\",\n                            \"Rack\"\n                        ]\n                    },\n                    \"default\": \"boxed\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"af1bfbdb-acb7-4a5b-b324-715bc592b89c\",\n                    \"table_uuid\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": \"Required by Samples &amp; Styling mobile app\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Planning\",\n                            \"In Transit\",\n                            \"Awaiting Samples\",\n                            \"Cancelled\",\n                            \"Ready\",\n                            \"Received\",\n                            \"Awaiting Studio Assignment\",\n                            \"Delivered\",\n                            \"Awaiting Carrier Assignment\"\n                        ]\n                    },\n                    \"default\": \"planning\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n            \"name\": \"Style Guides\",\n            \"alias\": \"style_guides\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Style Guides\",\n                \"singular\": \"Style Guide\"\n            },\n            \"primary_field_uuid\": \"56c5da9f-af0d-47b4-8927-c94b2fbd6c54\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"1\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"56c5da9f-af0d-47b4-8927-c94b2fbd6c54\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0552f7fb-5f50-473a-86da-f4068ed31e37\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"ID\",\n                    \"alias\": \"id\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"12026eaa-9414-4785-8ae7-0bc711a58717\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"16060674-071d-4c0b-955b-435434f15b5f\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"205b68c1-bdc6-45cb-af19-06b54073729f\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e2ab70bc-ea09-461b-a566-ec27116b5b0a\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"eb9067f3-610f-4ed0-86ad-5cfcbfa56f9a\",\n                    \"table_uuid\": \"7bfacd26-a340-432d-8226-89299e300e92\",\n                    \"name\": \"Preview\",\n                    \"alias\": \"preview\",\n                    \"description\": null,\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"png\",\n                            \"jpg\",\n                            \"jpeg\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n            \"name\": \"Swatches\",\n            \"alias\": \"swatches\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Swatches\",\n                \"singular\": \"Swatch\"\n            },\n            \"primary_field_uuid\": \"b02541d0-c06d-46af-a4cf-2d7df39bad47\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"2\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"b02541d0-c06d-46af-a4cf-2d7df39bad47\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"261ba5bd-0b26-4bd6-becb-8b1f4907e23f\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"db08c5b1-77e6-4d42-b594-1ffcb382ca5b\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"389d182e-489f-4cdc-8794-2e4a3375a556\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4e8c3935-b2c5-419d-81ee-23fab3af16be\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"62ead5c7-0c42-4aa7-813a-3694ca1e01fa\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Unique ID\",\n                    \"alias\": \"unique_id\",\n                    \"description\": \"Must be unique\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f0794aa6-59a4-42cd-9e1b-8b2a74bd2f5d\",\n                    \"table_uuid\": \"7bc3bc47-7842-48f5-9962-9515747bfab3\",\n                    \"name\": \"Hello\",\n                    \"alias\": \"hello\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n            \"name\": \"Bookings\",\n            \"alias\": \"bookings\",\n            \"description\": \"A specific period of time agreed to by Client and Agency for the Talent resource to work\",\n            \"terms\": {\n                \"plural\": \"Bookings\",\n                \"singular\": \"Booking\"\n            },\n            \"primary_field_uuid\": \"a2494c93-36f9-4fbd-ae29-a13f9287a4c7\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"2\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"a2494c93-36f9-4fbd-ae29-a13f9287a4c7\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7b49766e-f6a6-4e62-9fdd-946b762228c5\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7cd92a74-ae8c-46f0-a678-fa85b7cb00bc\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4bdc5628-db22-4281-9d51-73c812c2a989\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0c91b01c-3c37-48f6-a39e-fe7702eed97a\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"bf8cf2e4-0e05-4a0c-bf55-873fbe6b6543\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"ID\",\n                    \"alias\": \"id\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"28fc247f-5ace-48a3-99c2-48862e6f5e14\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b3db4529-7819-4f2f-9387-ee03d958a0db\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Other Name\",\n                    \"alias\": \"other_name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"29b73d0e-4fff-4745-aef7-c38f8958f363\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Yes or No\",\n                    \"alias\": \"yes_or_no\",\n                    \"description\": null,\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"177d30ff-6d72-4649-978f-d5ffbf18d4f9\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Inactive\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ec8399f9-582e-4f35-8d39-daf5741c8cb8\",\n                    \"table_uuid\": \"d9dc0c8c-78d7-411f-a1d9-ca4d6366acaa\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Contractor\",\n                            \"FTE\"\n                        ]\n                    },\n                    \"default\": \"contractor\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n            \"name\": \"Talent\",\n            \"alias\": \"talent\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Talent\",\n                \"singular\": \"Talent\"\n            },\n            \"primary_field_uuid\": \"3bd13e27-b8f8-4e27-b882-406849052993\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 2,\n            \"forms_total\": 0,\n            \"indexes_total\": \"4\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"3bd13e27-b8f8-4e27-b882-406849052993\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e41482c3-4d9a-4352-9e16-c7d30ca3ba6b\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"Must be unique\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"76d3440d-ceac-493b-aeda-84b0af7ec22b\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"76057bca-13bb-47a3-aeb3-f300e77ee043\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fe9aeffa-3b7b-40cd-bf7e-09707fb3345a\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Usage Rights Term\",\n                    \"alias\": \"usage_rights_term\",\n                    \"description\": \"The amount of time assets featuring this Talent resource can be used\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"5c2e53d5-128d-4e3e-81f7-f7bc70ac7b3d\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"87722726-ee71-4240-89d7-774353cbacbe\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"6e270735-8669-4ab2-9332-7559e5bb231a\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"On-Set Headshot\",\n                    \"alias\": \"onset_headshot\",\n                    \"description\": \"Image representing the talent resource, displayed to the capture team when On-Set\",\n                    \"type\": \"file\",\n                    \"settings\": {\n                        \"types\": [\n                            \"png\",\n                            \"jpg\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"666f3f49-37f3-4045-b8e3-914f93d30a33\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Inactive\",\n                            \"Active\"\n                        ]\n                    },\n                    \"default\": \"active\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"cab8d7b1-6699-4995-ad0a-4e80a868aa76\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"On-Set Role\",\n                    \"alias\": \"onset_role\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Featured\",\n                            \"Contributor\"\n                        ]\n                    },\n                    \"default\": \"featured\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e101c39c-e397-4300-8ecb-6497ee3bb4e2\",\n                    \"table_uuid\": \"7100c248-7cca-48a7-b34f-bfc894e2159e\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Digital Tech\",\n                            \"Art Director\",\n                            \"Stylist\",\n                            \"Photographer\",\n                            \"Model\"\n                        ]\n                    },\n                    \"default\": \"model\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n            \"name\": \"Shots\",\n            \"alias\": \"shots\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Shots\",\n                \"singular\": \"Shot\"\n            },\n            \"primary_field_uuid\": \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 9,\n            \"forms_total\": 6,\n            \"indexes_total\": \"5\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"4c3538c9-05a4-488c-8506-07ef3b27adda\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Reshoot\",\n                    \"alias\": \"reshoot\",\n                    \"description\": null,\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": false,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0465f731-4cda-427c-b213-bea308a91542\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Day Shot\",\n                    \"alias\": \"day_shot\",\n                    \"description\": \"ShotFlow capture records the date when this shot was completed\",\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"e9bc3819-1c43-44e2-abda-5877b740f64e\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Cost\",\n                    \"alias\": \"cost\",\n                    \"description\": \"May be deleted\",\n                    \"type\": \"currency\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"01862aad-d60e-40c6-8e49-3ac5a5282343\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Integer\",\n                    \"alias\": \"integer\",\n                    \"description\": \"May be deleted\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"20c31ac5-9572-4864-90b2-03c0c669c3cf\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Only Date\",\n                    \"alias\": \"only_date\",\n                    \"description\": null,\n                    \"type\": \"date\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"914c0717-af96-4e23-af90-fd215c13abd5\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Date Shot\",\n                    \"alias\": \"date_shot\",\n                    \"description\": \"ShotFlow capture records the date and time when this shot was completed\",\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM-DD-YYYY h:mm:ss A\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1957d890-b3f8-430a-85ae-007c39f519ca\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Sort\",\n                    \"alias\": \"sort\",\n                    \"description\": null,\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"cf5fc6b6-2478-43a6-a09c-4e877687c734\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f308e04c-cd2c-43bd-b3e0-b3c4570e6916\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"48c4f72d-1240-4280-838c-200274d82000\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Title #\",\n                    \"alias\": \"title\",\n                    \"description\": \"A user-friendly way to describe this shot, primarily for use by the capture team\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"21859561-9994-452a-b898-6aa68520f963\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Captured on Set\",\n                    \"alias\": \"captured_on_set\",\n                    \"description\": \"ShotFlow capture records the the Set this shot was completed on\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"1b8b4d4a-f01b-4f14-bf60-202f1d4ccb65\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b28dc638-a2ed-43cd-8fc6-f8bb6166d672\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7ac895ba-69ce-44a1-adbf-9b8366737a88\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Captured By\",\n                    \"alias\": \"captured_by\",\n                    \"description\": \"ShotFlow capture records the user that was logged in when this shot was completed\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"b0fddd2a-ba40-4d6a-92f9-c3391e7a94de\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Captured on Shot List\",\n                    \"alias\": \"captured_on_shot_list\",\n                    \"description\": \"ShotFlow capture records the Shot List this shot was assigned to when completed\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"dee6f282-8320-4c9c-b9ed-0081cd0638b6\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Naming Convention\",\n                    \"alias\": \"naming_convention\",\n                    \"description\": \"This value becomes the [Name] token in Capture One Pro\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8d2f6d17-2520-4b86-a106-1713c7e2164c\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"# of Captures\",\n                    \"alias\": \"of_captures\",\n                    \"description\": \"ShotFlow capture automatically records the number of captures for this shot\",\n                    \"type\": \"integer\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7b5d3c51-b9fd-462d-a3fa-25d6f7c25ddb\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Actual Shot Duration\",\n                    \"alias\": \"actual_shot_duration\",\n                    \"description\": \"Actual capture time recorded for this Shot\",\n                    \"type\": \"duration\",\n                    \"settings\": {\n                        \"format\": \"mm:ss\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0b6655c6-19e9-4c7e-a229-4569f0857722\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Needs Attention\",\n                    \"alias\": \"needs_attention\",\n                    \"description\": null,\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": true,\n                                \"conditions\": {\n                                    \"f9a8c98f-4377-441f-a5b8-7115050ff2be\": {\n                                        \"$nem\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8091db02-f71e-4109-93c0-b24ea466ec93\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Estimated Capture Duration\",\n                    \"alias\": \"estimated_capture_duration\",\n                    \"description\": \"Pre-generated value representing an estimate of the time on set for this type of Shot\",\n                    \"type\": \"duration\",\n                    \"settings\": {\n                        \"format\": \"mm:ss\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f9a8c98f-4377-441f-a5b8-7115050ff2be\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Photo Notes\",\n                    \"alias\": \"photo_notes\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Added on Set\",\n                    \"alias\": \"added_on_set\",\n                    \"description\": \"Designates if a shot was added or activated on Set. Managed by ShotFlow capture\",\n                    \"type\": \"boolean\",\n                    \"settings\": [],\n                    \"default\": true,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"7a8750db-7aaf-439d-aee0-6e515627d2d7\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Shot Children\",\n                    \"alias\": \"shot_children\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\",\n                        \"query\": null,\n                        \"filter\": \"children\",\n                        \"aggregate\": false,\n                        \"delimiter\": \",\",\n                        \"relationship\": \"2b3a2e79-2748-406c-96a1-ec41fd33bd10\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"a278d0fb-d74d-484e-9a44-8888ae2ef4bb\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Shot Parent\",\n                    \"alias\": \"shot_parent\",\n                    \"description\": null,\n                    \"type\": \"related_records_dynamic\",\n                    \"settings\": {\n                        \"field\": \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\",\n                        \"query\": null,\n                        \"filter\": \"parent\",\n                        \"aggregate\": false,\n                        \"delimiter\": \",\",\n                        \"relationship\": \"2b3a2e79-2748-406c-96a1-ec41fd33bd10\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8b33393d-66b4-4d55-abd2-a69a121c8289\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Shot URL\",\n                    \"alias\": \"shot_url\",\n                    \"description\": null,\n                    \"type\": \"url\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"53234c19-53ad-499e-8fc0-0eef678fbeba\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Barcode\",\n                    \"alias\": \"barcode\",\n                    \"description\": null,\n                    \"type\": \"barcode\",\n                    \"settings\": {\n                        \"text\": true,\n                        \"type\": \"C39\",\n                        \"width\": 1,\n                        \"height\": 30,\n                        \"length\": 10\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"50c87833-4986-46c3-a07c-bae424d88f68\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Angle Name\",\n                    \"alias\": \"angle_name\",\n                    \"description\": \"Identifies a specific view or angle for this shot, such as Front, Back, etc.\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Back\",\n                            \"Front\",\n                            \"Test\",\n                            \"360 Spin\",\n                            \"Video\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": \"Current shot status relative to workflow, utilized by ShotFlow capture and other tools\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"On-Figure\",\n                            \"In Progress\",\n                            \"Cancelled\",\n                            \"Awaiting Samples\",\n                            \"Awaiting Assignment\",\n                            \"Completed\",\n                            \"Ready\"\n                        ]\n                    },\n                    \"default\": \"awaiting samples\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": \"Identifies the type of shot being requested, such as Still Laydown, Still On-Figure, Video, 360, etc.\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"On-Figure\",\n                            \"Flat\",\n                            \"Laydown\",\n                            \"Pin-Up\",\n                            \"Orbitvu\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"9f5b267d-b7db-4fac-ae56-1c7392975aa7\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"Angle Abbreviation\",\n                    \"alias\": \"angle_abbreviation\",\n                    \"description\": \"Shortened version of Angle Name used for visual badges, e.g. BA for Back\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"BA\",\n                            \"FR\",\n                            \"TE\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"2fb57eea-906c-4c49-936e-662be46eac61\",\n                    \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                    \"name\": \"State\",\n                    \"alias\": \"state\",\n                    \"description\": \"System field for managing which Shots are Active or Inactive\",\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Inactive\",\n                            \"Active\"\n                        ]\n                    },\n                    \"default\": \"active\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": true,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n            \"name\": \"AAA\",\n            \"alias\": \"aaa\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"A2\",\n                \"singular\": \"A1\"\n            },\n            \"primary_field_uuid\": \"588a380a-fd52-4dbc-ad76-ab203845aa77\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"actions_total\": 0,\n            \"forms_total\": 1,\n            \"indexes_total\": \"2\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"588a380a-fd52-4dbc-ad76-ab203845aa77\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"fbd93be8-4d0a-40bf-bdd3-836b205b7442\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"d7bff221-953b-4ab6-acc8-46c27995ad0d\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"88b3ff4d-656e-4b54-aab5-498491abc7e3\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c9b4a9c2-31f4-4bca-a290-e442a38ab30d\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"c61d82cd-662e-4461-b507-e7bec72fa8b2\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Item\",\n                    \"alias\": \"item\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"3567e990-1121-4d1a-b044-a012f777b11a\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Code 39\",\n                    \"alias\": \"code_39\",\n                    \"description\": null,\n                    \"type\": \"barcode\",\n                    \"settings\": {\n                        \"text\": true,\n                        \"type\": \"C39\",\n                        \"width\": 1,\n                        \"height\": 30,\n                        \"length\": 10\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"259b165e-a6bb-474f-abae-af5e7c6d1950\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Reshoot\",\n                    \"alias\": \"reshoot\",\n                    \"description\": null,\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": false,\n                                \"conditions\": {\n                                    \"c61d82cd-662e-4461-b507-e7bec72fa8b2\": {\n                                        \"$em\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"8f16e051-e128-41b3-bb74-f1532c483b9c\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Creative Director\",\n                    \"alias\": \"creative_director\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": \"Timmy\",\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": true,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                },\n                {\n                    \"uuid\": \"f4fef0f6-f9b1-42e9-abd1-dcca30fdff21\",\n                    \"table_uuid\": \"9f916a90-380d-49ce-b575-eaca5cf9c8c2\",\n                    \"name\": \"Creative Assistant\",\n                    \"alias\": \"creative_assistant\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": true,\n                    \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n            \"name\": \"Shoots\",\n            \"alias\": \"shoots\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Shoots\",\n                \"singular\": \"Shoot\"\n            },\n            \"primary_field_uuid\": \"162fc001-1dff-4d94-b117-57e55f1fdf5e\",\n            \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"0\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"00edff56-753f-4958-99c0-3be68eb15c50\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"cd4c838b-9656-4cb7-b6ae-dc40cf46bc6d\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"a8e4dda2-086b-424e-9169-9d2e7d8c4659\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"e4247ed4-c90e-4538-82cb-504bf28cc4bd\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"9c18acd9-3444-48cd-8193-3405ff8b14e0\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"162fc001-1dff-4d94-b117-57e55f1fdf5e\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"82cfa0f3-e35f-4e85-bff7-d907d93b3526\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Awaiting Studio Assignment\",\n                            \"Planning\",\n                            \"Ready\",\n                            \"In Progress\",\n                            \"On Hold\",\n                            \"Cancelled\",\n                            \"Completed\"\n                        ]\n                    },\n                    \"default\": \"planning\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"f7bb0f36-146f-400d-a129-66919a767bf6\",\n                    \"table_uuid\": \"0fade67d-f96e-4f94-8ab1-e88912059fe7\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Studio\",\n                            \"Location\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n            \"name\": \"Sets\",\n            \"alias\": \"sets\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Sets\",\n                \"singular\": \"Set\"\n            },\n            \"primary_field_uuid\": \"e1d8b845-7f71-41cb-aaf0-a6ec98de285e\",\n            \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"0\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"ef9ad658-cbba-4032-a981-9a8b672d7518\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Yes No field\",\n                    \"alias\": \"yes_no_field\",\n                    \"description\": null,\n                    \"type\": \"boolean_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": false,\n                                \"conditions\": {\n                                    \"236c6a2d-ce4b-45b9-a38c-11a9bb4313dd\": {\n                                        \"$nct\": \"Caro\"\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": false\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"d9179ae4-d005-4368-b6e5-3a1314258f5e\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Text field\",\n                    \"alias\": \"text_field\",\n                    \"description\": null,\n                    \"type\": \"text_dynamic\",\n                    \"settings\": {\n                        \"rules\": [\n                            {\n                                \"value\": \"True\",\n                                \"conditions\": {\n                                    \"3124c4f4-cae5-4706-af3e-7748ef946622\": {\n                                        \"$nem\": null\n                                    }\n                                }\n                            }\n                        ],\n                        \"default\": null\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"236c6a2d-ce4b-45b9-a38c-11a9bb4313dd\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"Must be unique\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"789d32cd-b445-490f-9bf7-e708151c4553\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"37138a0c-1a40-4fd6-ad9b-8da407452de7\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"d280c8eb-1be5-4bee-b50a-66ec55e04428\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"6a6a0135-212f-4f6d-942c-ff9269d39297\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"e1d8b845-7f71-41cb-aaf0-a6ec98de285e\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"3124c4f4-cae5-4706-af3e-7748ef946622\",\n                    \"table_uuid\": \"66f8a004-f47b-46de-80da-20a0e9e8a878\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Inactive\"\n                        ]\n                    },\n                    \"default\": \"active\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n            \"name\": \"Gear\",\n            \"alias\": \"gear\",\n            \"description\": \"Physical components that are used on Set to produce shoots\",\n            \"terms\": {\n                \"plural\": \"Gear\",\n                \"singular\": \"Gear\"\n            },\n            \"primary_field_uuid\": \"7686fffa-6bbe-4265-b078-afc62143c39e\",\n            \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"0\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"ef733b29-c40e-477f-86ab-c58f9f272cbe\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Serial Number\",\n                    \"alias\": \"serial_number\",\n                    \"description\": null,\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"e35842cc-ef18-4bc6-9dd0-84b2bf39262c\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"af454062-b0fa-41c9-84d1-a23d09390d64\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"404a8b58-dc51-418e-9ba5-133406e91390\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"0d80eb06-be70-4b5d-8b1a-8176baae887f\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"7686fffa-6bbe-4265-b078-afc62143c39e\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"ace2e630-3c19-4f1d-9b22-521432d6403f\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Type\",\n                    \"alias\": \"type\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Lighting\",\n                            \"Prop\",\n                            \"Lens\",\n                            \"Camera\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                },\n                {\n                    \"uuid\": \"c87ce9c2-dd84-4b16-a4c0-3a7e723d7238\",\n                    \"table_uuid\": \"7ed238d9-2fc7-4e0b-aa08-c51e9ba8610f\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Inactive\",\n                            \"Awaiting Repair\",\n                            \"In Repair\"\n                        ]\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"055acd65-3187-4d29-acb7-afdeec789839\"\n                }\n            ]\n        },\n        {\n            \"uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n            \"name\": \"Sets\",\n            \"alias\": \"sets\",\n            \"description\": null,\n            \"terms\": {\n                \"plural\": \"Sets\",\n                \"singular\": \"Set\"\n            },\n            \"primary_field_uuid\": \"3d79e2fb-875b-474b-8b82-faee984b7745\",\n            \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\",\n            \"actions_total\": 0,\n            \"forms_total\": 0,\n            \"indexes_total\": \"0\",\n            \"labels_total\": 0,\n            \"fields\": [\n                {\n                    \"uuid\": \"f8f3f30b-26c9-48c8-adaf-4ab251bd3800\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Name\",\n                    \"alias\": \"name\",\n                    \"description\": \"Must be unique\",\n                    \"type\": \"text\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"c3ca3a72-c8e3-459d-a31e-0488117c6714\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Modified\",\n                    \"alias\": \"modified\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"c698d7b9-2b6c-4832-93fb-b18f207084b7\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Created\",\n                    \"alias\": \"created\",\n                    \"description\": null,\n                    \"type\": \"timestamp\",\n                    \"settings\": {\n                        \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                    },\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"e5f3385e-c52f-43b3-bbe8-9b9e766ad24a\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Modified By\",\n                    \"alias\": \"modified_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"e11824be-1f02-4f71-bcb0-51b65b7cd801\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Created By\",\n                    \"alias\": \"created_by\",\n                    \"description\": null,\n                    \"type\": \"user\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"3d79e2fb-875b-474b-8b82-faee984b7745\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"UUID\",\n                    \"alias\": \"uuid\",\n                    \"description\": null,\n                    \"type\": \"uuid\",\n                    \"settings\": [],\n                    \"default\": null,\n                    \"required\": true,\n                    \"primary\": true,\n                    \"unique\": true,\n                    \"protected\": false,\n                    \"system\": true,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                },\n                {\n                    \"uuid\": \"259abd1b-4a33-40a3-bcc8-63eca2a32532\",\n                    \"table_uuid\": \"59742dbb-8b45-48da-8aa1-31f1deda5087\",\n                    \"name\": \"Status\",\n                    \"alias\": \"status\",\n                    \"description\": null,\n                    \"type\": \"text_options\",\n                    \"settings\": {\n                        \"options\": [\n                            \"Active\",\n                            \"Inactive\"\n                        ]\n                    },\n                    \"default\": \"active\",\n                    \"required\": false,\n                    \"primary\": false,\n                    \"unique\": false,\n                    \"protected\": true,\n                    \"system\": false,\n                    \"logged\": false,\n                    \"application_uuid\": \"6e97f94b-aa9e-45bd-a991-e6bad66cc385\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"54aca9d8-03ae-44a9-93d1-b004e214e857","name":"/applications/{application uuid}/tables/{table uuid}","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 10:31:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n        \"name\": \"Samples\",\n        \"alias\": \"samples\",\n        \"description\": null,\n        \"terms\": {\n            \"plural\": \"Samples\",\n            \"singular\": \"Sample\"\n        },\n        \"primary_field_uuid\": \"5ccb21e5-5027-440f-af96-6a2295234d71\",\n        \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n        \"actions_total\": 7,\n        \"forms_total\": 2,\n        \"indexes_total\": \"4\",\n        \"labels_total\": 1,\n        \"fields\": [\n            {\n                \"uuid\": \"5ccb21e5-5027-440f-af96-6a2295234d71\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"UUID\",\n                \"alias\": \"uuid\",\n                \"description\": null,\n                \"type\": \"uuid\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": true,\n                \"primary\": true,\n                \"unique\": true,\n                \"protected\": false,\n                \"system\": true,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"78c2654b-14b8-4238-9261-d83c124d118f\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Reference Image\",\n                \"alias\": \"reference_image\",\n                \"description\": \"Required by Samples & Styling mobile app\",\n                \"type\": \"file\",\n                \"settings\": {\n                    \"types\": [\n                        \"pdf\",\n                        \"png\",\n                        \"jpg\",\n                        \"jpeg\"\n                    ]\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"e42b678f-7b31-405f-b253-2b3c04296233\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Shot Statuses\",\n                \"alias\": \"shot_statuses\",\n                \"description\": null,\n                \"type\": \"related_records_dynamic\",\n                \"settings\": {\n                    \"field\": \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\",\n                    \"query\": null,\n                    \"filter\": null,\n                    \"aggregate\": false,\n                    \"delimiter\": \",\",\n                    \"relationship\": \"e2d1d7ea-90cd-4b48-94f0-04fc543ac6ec\"\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"988797a1-da61-4c4a-91ed-7f796509ccf2\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Created By\",\n                \"alias\": \"created_by\",\n                \"description\": null,\n                \"type\": \"user\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": true,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": true,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"ef556630-fc3e-4c81-8134-9ea7063c5203\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Modified By\",\n                \"alias\": \"modified_by\",\n                \"description\": null,\n                \"type\": \"user\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": true,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Created\",\n                \"alias\": \"created\",\n                \"description\": null,\n                \"type\": \"timestamp\",\n                \"settings\": {\n                    \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                },\n                \"default\": null,\n                \"required\": true,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": true,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"b58d4e60-415d-45d5-ad99-e46aa0af3174\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Modified\",\n                \"alias\": \"modified\",\n                \"description\": null,\n                \"type\": \"timestamp\",\n                \"settings\": {\n                    \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": true,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Barcode Value\",\n                \"alias\": \"barcode_value\",\n                \"description\": null,\n                \"type\": \"barcode\",\n                \"settings\": {\n                    \"text\": true,\n                    \"type\": \"C128\",\n                    \"width\": 1,\n                    \"height\": 30,\n                    \"length\": 10\n                },\n                \"default\": null,\n                \"required\": true,\n                \"primary\": false,\n                \"unique\": true,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"aba5c3a3-aae6-4550-819e-a67a910f4167\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Studio Day Received\",\n                \"alias\": \"studio_day_received\",\n                \"description\": \"Required by Samples & Styling mobile app\",\n                \"type\": \"date\",\n                \"settings\": {\n                    \"format\": \"MM/DD/YYYY\"\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"741fc317-6083-4f63-97e9-bab8f357bc80\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Number\",\n                \"alias\": \"number\",\n                \"description\": null,\n                \"type\": \"integer\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"d952074b-8943-498c-8f1e-6a8e3b9e69a3\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Studio Date Received\",\n                \"alias\": \"studio_date_received\",\n                \"description\": \"Required by Samples &amp; Styling mobile app\",\n                \"type\": \"timestamp\",\n                \"settings\": {\n                    \"format\": \"MM-DD-YYYY h:mm A\"\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"be20c42b-460e-4e9f-9f6d-123eb0ca06b4\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Notes\",\n                \"alias\": \"notes\",\n                \"description\": \"Required by Samples &amp; Styling mobile app\",\n                \"type\": \"text\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Barcode Text\",\n                \"alias\": \"barcode_text\",\n                \"description\": null,\n                \"type\": \"text\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": true,\n                \"primary\": false,\n                \"unique\": true,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"4705ead2-e46d-4732-b682-b0d1a1e9862f\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Sent\",\n                \"alias\": \"sent\",\n                \"description\": null,\n                \"type\": \"date\",\n                \"settings\": {\n                    \"format\": \"MM/DD/YYYY\"\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"8fa972a1-0b86-45d1-85c0-2adf9085e839\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Integer (New)\",\n                \"alias\": \"integer_new\",\n                \"description\": null,\n                \"type\": \"integer\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"5d06d061-36c8-499f-b1f1-e3395a372766\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Text with Default\",\n                \"alias\": \"text_with_default\",\n                \"description\": null,\n                \"type\": \"text\",\n                \"settings\": [],\n                \"default\": \"Test 123\",\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"183e15a9-4330-4fda-a8a9-8c504c377afd\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Location\",\n                \"alias\": \"location\",\n                \"description\": \"Required by Samples & Styling mobile app\",\n                \"type\": \"text_options\",\n                \"settings\": {\n                    \"options\": [\n                        \"Prep Area\",\n                        \"Studio\",\n                        \"On Set\"\n                    ]\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": true,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Decimal\",\n                \"alias\": \"decimal\",\n                \"description\": null,\n                \"type\": \"decimal\",\n                \"settings\": [],\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"a14dbdad-6c36-46b4-a406-c6a2afffc2ed\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Text Dynamic\",\n                \"alias\": \"text_dynamic\",\n                \"description\": null,\n                \"type\": \"text_dynamic\",\n                \"settings\": {\n                    \"rules\": [\n                        {\n                            \"value\": \"Yes\",\n                            \"conditions\": {\n                                \"90cf838d-11de-4949-8afc-eac932eb6f3d\": {\n                                    \"$em\": null\n                                }\n                            }\n                        }\n                    ],\n                    \"default\": null\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Size\",\n                \"alias\": \"size\",\n                \"description\": \"Supports defining different sizing categories or values for workflows where Sample Size is relevant\",\n                \"type\": \"text_options\",\n                \"settings\": {\n                    \"options\": [\n                        \"Plus\",\n                        \"Regular\"\n                    ]\n                },\n                \"default\": \"regular\",\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Type\",\n                \"alias\": \"type\",\n                \"description\": \"Supports defining different typing categories or values for workflows where Sample Type is relevant\",\n                \"type\": \"text_options\",\n                \"settings\": {\n                    \"options\": [\n                        \"Sales\",\n                        \"DC Inventory\",\n                        \"TOP\",\n                        \"Pre-production\"\n                    ]\n                },\n                \"default\": \"top\",\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": false,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            },\n            {\n                \"uuid\": \"c691f449-2904-44aa-80a0-9edc011391c6\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Status\",\n                \"alias\": \"status\",\n                \"description\": \"Required by Samples &amp; Styling mobile app\",\n                \"type\": \"text_options\",\n                \"settings\": {\n                    \"options\": [\n                        \"Awaiting Assignment\",\n                        \"Assigned\",\n                        \"Received\",\n                        \"Requested\",\n                        \"Delivered\",\n                        \"In Transit\",\n                        \"Sold\",\n                        \"Ready\",\n                        \"Cancelled\",\n                        \"Missing\",\n                        \"Returned\",\n                        \"In Production\"\n                    ]\n                },\n                \"default\": null,\n                \"required\": false,\n                \"primary\": false,\n                \"unique\": false,\n                \"protected\": true,\n                \"system\": false,\n                \"logged\": false,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\"\n            }\n        ]\n    }\n}"}],"_postman_id":"3c2fd555-71e2-42a6-af19-8ec0d2ea21e7"}],"id":"348ac168-d3ca-4f9c-9115-64c4696856dd","_postman_id":"348ac168-d3ca-4f9c-9115-64c4696856dd","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Records - Relationships","item":[{"name":"/applications/{application uuid}/relationships/records/retrieve","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"154ef71e-02f5-492e-b7ca-c49a81b18f74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n         \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\": \"5ac0cdae-bc2d-4256-82f5-7ee9d60d967d\"\n     },\n     \"fetch\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/retrieve","description":"<h4 id=\"description\">Description:</h4>\n<p>Retrieve records that are related to provided record.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>records</td>\n<td>Record UUIDs indexed by table UUID.</td>\n<td>True</td>\n</tr>\n<tr>\n<td>fetch</td>\n<td>Whether to fetch records (default false).</td>\n<td></td>\n</tr>\n<tr>\n<td>lookup</td>\n<td>Whether to retrieve only the lookup fields (default false, fetch must be enabled).</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","relationships","records","retrieve"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"c45e30d7-2be6-475a-bc5e-e13bc975f1cd","name":"/applications/{application uuid}/relationships/records/retrieve","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n         \"{table uuid}\": \"{record uuid}\"\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/retrieve"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:46:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"489"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"5ac0cdae-bc2d-4256-82f5-7ee9d60d967d\": [\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                \"records\": [\n                    \"591942e3-04cf-4f68-8d9b-38f8ce4991d3\"\n                ]\n            },\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"records\": [\n                    \"c66c0452-bda1-443e-8561-47d9dc20369f\",\n                    \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                    \"b059d08b-c5f3-45a7-b307-d05c376b10f8\",\n                    \"81155b2c-3f7c-45af-9684-ed85fcb43076\"\n                ]\n            }\n        ]\n    }\n}"},{"id":"cb2958a2-a2ec-4bed-9080-8503d7eedd6d","name":"/applications/{application uuid}/relationships/records/retrieve","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n         \"{table uuid}\": \"{record uuid}\"\n     },\n     \"fetch\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/retrieve"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:47:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"5ac0cdae-bc2d-4256-82f5-7ee9d60d967d\": [\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                \"records\": [\n                    {\n                        \"09e74b9b-b9c5-4a66-878d-816725435f8d\": \"591942e3-04cf-4f68-8d9b-38f8ce4991d3\",\n                        \"fc8af7d6-47a3-4d3e-a763-41064099d3fd\": null,\n                        \"0a90821c-3fe4-46ad-b270-aa313924f346\": {\n                            \"name\": \"Jean Crous\",\n                            \"uuid\": \"e6e2ee45-da5d-4c37-b7f5-d7642c9dc1d9\",\n                            \"email\": \"jean@shotflow.com\"\n                        },\n                        \"ecab3efd-4100-43c4-a516-390cfeddccce\": null,\n                        \"f0996519-ff82-48cd-8bfa-5b511656c205\": null,\n                        \"12f2b33b-8d25-495f-a86f-e7dfd3364c45\": null,\n                        \"55e15de7-46e1-4b3f-9dfa-495fe40480a3\": null,\n                        \"649f25f7-8d55-443b-9188-6b10bb75c17b\": 1618562695,\n                        \"b0838bf1-0b0c-49a1-98ed-7043cf85def2\": null,\n                        \"fda634c3-bb84-43e5-9d76-ed655be9582b\": \"Jean testing 4\",\n                        \"8072eb2e-a2d5-4776-8d66-620def9d4f82\": null,\n                        \"cf70eeb5-8624-434c-a94a-c2155d79aee4\": null,\n                        \"00c5b8e5-21c8-4b81-b3d6-c73f3daaa232\": null,\n                        \"183ff3a4-07a8-479d-b860-998de3a77b4b\": \"Boxed\",\n                        \"af1bfbdb-acb7-4a5b-b324-715bc592b89c\": \"Planning\"\n                    }\n                ]\n            },\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"records\": [\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"c66c0452-bda1-443e-8561-47d9dc20369f\",\n                        \"4c3538c9-05a4-488c-8506-07ef3b27adda\": false,\n                        \"0465f731-4cda-427c-b213-bea308a91542\": null,\n                        \"e9bc3819-1c43-44e2-abda-5877b740f64e\": null,\n                        \"01862aad-d60e-40c6-8e49-3ac5a5282343\": null,\n                        \"20c31ac5-9572-4864-90b2-03c0c669c3cf\": null,\n                        \"914c0717-af96-4e23-af90-fd215c13abd5\": null,\n                        \"1957d890-b3f8-430a-85ae-007c39f519ca\": null,\n                        \"cf5fc6b6-2478-43a6-a09c-4e877687c734\": {\n                            \"name\": \"Rebecca Starr\",\n                            \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                            \"email\": \"rebecca@shotflow.com\"\n                        },\n                        \"f308e04c-cd2c-43bd-b3e0-b3c4570e6916\": {\n                            \"name\": \"Jean Crous\",\n                            \"uuid\": \"e6e2ee45-da5d-4c37-b7f5-d7642c9dc1d9\",\n                            \"email\": \"jean@shotflow.com\"\n                        },\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Back\",\n                        \"21859561-9994-452a-b898-6aa68520f963\": null,\n                        \"1b8b4d4a-f01b-4f14-bf60-202f1d4ccb65\": 1580318863,\n                        \"b28dc638-a2ed-43cd-8fc6-f8bb6166d672\": 1655372102,\n                        \"7ac895ba-69ce-44a1-adbf-9b8366737a88\": null,\n                        \"b0fddd2a-ba40-4d6a-92f9-c3391e7a94de\": null,\n                        \"dee6f282-8320-4c9c-b9ed-0081cd0638b6\": \"4972979_924_Back\",\n                        \"8d2f6d17-2520-4b86-a106-1713c7e2164c\": null,\n                        \"7b5d3c51-b9fd-462d-a3fa-25d6f7c25ddb\": null,\n                        \"0b6655c6-19e9-4c7e-a229-4569f0857722\": true,\n                        \"8091db02-f71e-4109-93c0-b24ea466ec93\": null,\n                        \"f9a8c98f-4377-441f-a5b8-7115050ff2be\": \"Almost everything is going to happen for you automatically - you don't have to spend any time working or worrying. See there how easy that is.\",\n                        \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\": false,\n                        \"7a8750db-7aaf-439d-aee0-6e515627d2d7\": null,\n                        \"a278d0fb-d74d-484e-9a44-8888ae2ef4bb\": \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                        \"8b33393d-66b4-4d55-abd2-a69a121c8289\": null,\n                        \"53234c19-53ad-499e-8fc0-0eef678fbeba\": {\n                            \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=SPU5MWDR7I&type=C39&width=1&height=30&text=true\\\" alt=\\\"SPU5MWDR7I\\\" />\",\n                            \"value\": \"SPU5MWDR7I\"\n                        },\n                        \"50c87833-4986-46c3-a07c-bae424d88f68\": null,\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"Laydown\",\n                        \"9f5b267d-b7db-4fac-ae56-1c7392975aa7\": null,\n                        \"2fb57eea-906c-4c49-936e-662be46eac61\": \"Active\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                        \"4c3538c9-05a4-488c-8506-07ef3b27adda\": false,\n                        \"0465f731-4cda-427c-b213-bea308a91542\": null,\n                        \"e9bc3819-1c43-44e2-abda-5877b740f64e\": null,\n                        \"01862aad-d60e-40c6-8e49-3ac5a5282343\": null,\n                        \"20c31ac5-9572-4864-90b2-03c0c669c3cf\": null,\n                        \"914c0717-af96-4e23-af90-fd215c13abd5\": null,\n                        \"1957d890-b3f8-430a-85ae-007c39f519ca\": null,\n                        \"cf5fc6b6-2478-43a6-a09c-4e877687c734\": {\n                            \"name\": \"Rebecca Starr\",\n                            \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                            \"email\": \"rebecca@shotflow.com\"\n                        },\n                        \"f308e04c-cd2c-43bd-b3e0-b3c4570e6916\": {\n                            \"name\": \"Jean Crous\",\n                            \"uuid\": \"e6e2ee45-da5d-4c37-b7f5-d7642c9dc1d9\",\n                            \"email\": \"jean@shotflow.com\"\n                        },\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Flat\",\n                        \"21859561-9994-452a-b898-6aa68520f963\": null,\n                        \"1b8b4d4a-f01b-4f14-bf60-202f1d4ccb65\": 1580318863,\n                        \"b28dc638-a2ed-43cd-8fc6-f8bb6166d672\": 1655372102,\n                        \"7ac895ba-69ce-44a1-adbf-9b8366737a88\": null,\n                        \"b0fddd2a-ba40-4d6a-92f9-c3391e7a94de\": null,\n                        \"dee6f282-8320-4c9c-b9ed-0081cd0638b6\": \"4972979_924_Flat\",\n                        \"8d2f6d17-2520-4b86-a106-1713c7e2164c\": null,\n                        \"7b5d3c51-b9fd-462d-a3fa-25d6f7c25ddb\": null,\n                        \"0b6655c6-19e9-4c7e-a229-4569f0857722\": true,\n                        \"8091db02-f71e-4109-93c0-b24ea466ec93\": null,\n                        \"f9a8c98f-4377-441f-a5b8-7115050ff2be\": \"Almost everything is going to happen for you automatically - you don't have to spend any time working or worrying. See there how easy that is.\",\n                        \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\": false,\n                        \"7a8750db-7aaf-439d-aee0-6e515627d2d7\": \"81155b2c-3f7c-45af-9684-ed85fcb43076,b059d08b-c5f3-45a7-b307-d05c376b10f8,c66c0452-bda1-443e-8561-47d9dc20369f\",\n                        \"a278d0fb-d74d-484e-9a44-8888ae2ef4bb\": null,\n                        \"8b33393d-66b4-4d55-abd2-a69a121c8289\": null,\n                        \"53234c19-53ad-499e-8fc0-0eef678fbeba\": {\n                            \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=7238UBRJZY&type=C39&width=1&height=30&text=true\\\" alt=\\\"7238UBRJZY\\\" />\",\n                            \"value\": \"7238UBRJZY\"\n                        },\n                        \"50c87833-4986-46c3-a07c-bae424d88f68\": null,\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"Laydown\",\n                        \"9f5b267d-b7db-4fac-ae56-1c7392975aa7\": null,\n                        \"2fb57eea-906c-4c49-936e-662be46eac61\": \"Active\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"b059d08b-c5f3-45a7-b307-d05c376b10f8\",\n                        \"4c3538c9-05a4-488c-8506-07ef3b27adda\": false,\n                        \"0465f731-4cda-427c-b213-bea308a91542\": null,\n                        \"e9bc3819-1c43-44e2-abda-5877b740f64e\": null,\n                        \"01862aad-d60e-40c6-8e49-3ac5a5282343\": null,\n                        \"20c31ac5-9572-4864-90b2-03c0c669c3cf\": null,\n                        \"914c0717-af96-4e23-af90-fd215c13abd5\": null,\n                        \"1957d890-b3f8-430a-85ae-007c39f519ca\": null,\n                        \"cf5fc6b6-2478-43a6-a09c-4e877687c734\": {\n                            \"name\": \"Rebecca Starr\",\n                            \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                            \"email\": \"rebecca@shotflow.com\"\n                        },\n                        \"f308e04c-cd2c-43bd-b3e0-b3c4570e6916\": {\n                            \"name\": \"Jean Crous\",\n                            \"uuid\": \"e6e2ee45-da5d-4c37-b7f5-d7642c9dc1d9\",\n                            \"email\": \"jean@shotflow.com\"\n                        },\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Alt1\",\n                        \"21859561-9994-452a-b898-6aa68520f963\": null,\n                        \"1b8b4d4a-f01b-4f14-bf60-202f1d4ccb65\": 1580318863,\n                        \"b28dc638-a2ed-43cd-8fc6-f8bb6166d672\": 1655372102,\n                        \"7ac895ba-69ce-44a1-adbf-9b8366737a88\": null,\n                        \"b0fddd2a-ba40-4d6a-92f9-c3391e7a94de\": null,\n                        \"dee6f282-8320-4c9c-b9ed-0081cd0638b6\": \"4972979_924_Alt1\",\n                        \"8d2f6d17-2520-4b86-a106-1713c7e2164c\": null,\n                        \"7b5d3c51-b9fd-462d-a3fa-25d6f7c25ddb\": null,\n                        \"0b6655c6-19e9-4c7e-a229-4569f0857722\": true,\n                        \"8091db02-f71e-4109-93c0-b24ea466ec93\": null,\n                        \"f9a8c98f-4377-441f-a5b8-7115050ff2be\": \"Almost everything is going to happen for you automatically - you don't have to spend any time working or worrying. See there how easy that is.\",\n                        \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\": false,\n                        \"7a8750db-7aaf-439d-aee0-6e515627d2d7\": null,\n                        \"a278d0fb-d74d-484e-9a44-8888ae2ef4bb\": \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                        \"8b33393d-66b4-4d55-abd2-a69a121c8289\": null,\n                        \"53234c19-53ad-499e-8fc0-0eef678fbeba\": {\n                            \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=FI70TPA4H5&type=C39&width=1&height=30&text=true\\\" alt=\\\"FI70TPA4H5\\\" />\",\n                            \"value\": \"FI70TPA4H5\"\n                        },\n                        \"50c87833-4986-46c3-a07c-bae424d88f68\": null,\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"On-Figure\",\n                        \"9f5b267d-b7db-4fac-ae56-1c7392975aa7\": null,\n                        \"2fb57eea-906c-4c49-936e-662be46eac61\": \"Active\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"81155b2c-3f7c-45af-9684-ed85fcb43076\",\n                        \"4c3538c9-05a4-488c-8506-07ef3b27adda\": false,\n                        \"0465f731-4cda-427c-b213-bea308a91542\": \"2022-01-19\",\n                        \"e9bc3819-1c43-44e2-abda-5877b740f64e\": null,\n                        \"01862aad-d60e-40c6-8e49-3ac5a5282343\": null,\n                        \"20c31ac5-9572-4864-90b2-03c0c669c3cf\": null,\n                        \"914c0717-af96-4e23-af90-fd215c13abd5\": 1642604385,\n                        \"1957d890-b3f8-430a-85ae-007c39f519ca\": null,\n                        \"cf5fc6b6-2478-43a6-a09c-4e877687c734\": {\n                            \"name\": \"Rebecca Starr\",\n                            \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                            \"email\": \"rebecca@shotflow.com\"\n                        },\n                        \"f308e04c-cd2c-43bd-b3e0-b3c4570e6916\": {\n                            \"name\": \"Jean Crous\",\n                            \"uuid\": \"e6e2ee45-da5d-4c37-b7f5-d7642c9dc1d9\",\n                            \"email\": \"jean@shotflow.com\"\n                        },\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Alt2\",\n                        \"21859561-9994-452a-b898-6aa68520f963\": \"Load 100 Shots\",\n                        \"1b8b4d4a-f01b-4f14-bf60-202f1d4ccb65\": 1580318863,\n                        \"b28dc638-a2ed-43cd-8fc6-f8bb6166d672\": 1655372102,\n                        \"7ac895ba-69ce-44a1-adbf-9b8366737a88\": \"Jean Crous\",\n                        \"b0fddd2a-ba40-4d6a-92f9-c3391e7a94de\": \"100 Shots\",\n                        \"dee6f282-8320-4c9c-b9ed-0081cd0638b6\": \"4972979_924_Alt2\",\n                        \"8d2f6d17-2520-4b86-a106-1713c7e2164c\": 2,\n                        \"7b5d3c51-b9fd-462d-a3fa-25d6f7c25ddb\": null,\n                        \"0b6655c6-19e9-4c7e-a229-4569f0857722\": true,\n                        \"8091db02-f71e-4109-93c0-b24ea466ec93\": null,\n                        \"f9a8c98f-4377-441f-a5b8-7115050ff2be\": \"Life is too short to be alone, too precious. Share it with a friend. Don't fiddle with it all day. Put it in, leave it alone.\",\n                        \"ac8b7821-d28a-4959-85fa-4ba16c4ed7c1\": false,\n                        \"7a8750db-7aaf-439d-aee0-6e515627d2d7\": null,\n                        \"a278d0fb-d74d-484e-9a44-8888ae2ef4bb\": \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                        \"8b33393d-66b4-4d55-abd2-a69a121c8289\": null,\n                        \"53234c19-53ad-499e-8fc0-0eef678fbeba\": {\n                            \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=97VFNYMX45&type=C39&width=1&height=30&text=true\\\" alt=\\\"97VFNYMX45\\\" />\",\n                            \"value\": \"97VFNYMX45\"\n                        },\n                        \"50c87833-4986-46c3-a07c-bae424d88f68\": null,\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"In Progress\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"On-Figure\",\n                        \"9f5b267d-b7db-4fac-ae56-1c7392975aa7\": null,\n                        \"2fb57eea-906c-4c49-936e-662be46eac61\": \"Inactive\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"badf87c2-1584-401b-9822-58631d08e855","name":"/applications/{application uuid}/relationships/records/retrieve","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n         \"{table uuid}\": \"{record uuid}\"\n     },\n     \"fetch\": true,\n     \"lookup\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/retrieve"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:45:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1553"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"5ac0cdae-bc2d-4256-82f5-7ee9d60d967d\": [\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"25de465a-2b75-43f7-8d30-78a07db0504d\",\n                \"records\": [\n                    {\n                        \"09e74b9b-b9c5-4a66-878d-816725435f8d\": \"591942e3-04cf-4f68-8d9b-38f8ce4991d3\",\n                        \"fda634c3-bb84-43e5-9d76-ed655be9582b\": \"Jean testing 4\",\n                        \"183ff3a4-07a8-479d-b860-998de3a77b4b\": \"Boxed\",\n                        \"af1bfbdb-acb7-4a5b-b324-715bc592b89c\": \"Planning\"\n                    }\n                ]\n            },\n            {\n                \"application\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"table\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"records\": [\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"c66c0452-bda1-443e-8561-47d9dc20369f\",\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Back\",\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"Laydown\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\",\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Flat\",\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"Laydown\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"b059d08b-c5f3-45a7-b307-d05c376b10f8\",\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Alt1\",\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"Ready\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"On-Figure\"\n                    },\n                    {\n                        \"5338d2cd-6dac-4bc3-98b8-6f72ae223204\": \"81155b2c-3f7c-45af-9684-ed85fcb43076\",\n                        \"48c4f72d-1240-4280-838c-200274d82000\": \"744972979924_Magnet_Medium Blue_Alt2\",\n                        \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\": \"In Progress\",\n                        \"8ec2747e-52e1-4e2d-8c7b-fb0f2ec1d13f\": \"On-Figure\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"154ef71e-02f5-492e-b7ca-c49a81b18f74"},{"name":"/applications/{application uuid}/relationships/records/{record uuid}","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"795487ed-8254-4185-adc7-a9e68c7c1628","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n          \"25de465a-2b75-43f7-8d30-78a07db0504d\": [\n               \"591942e3-04cf-4f68-8d9b-38f8ce4991d3\"\n          ],\n          \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\": [\n               \"c66c0452-bda1-443e-8561-47d9dc20369f\",\n               \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\"\n          ]\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/{record uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Create relationships between records. Any table records must include full set of records as existing relationship records will be deleted (unless partial is set to true).</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>records</td>\n<td>Records to create relationships for index by table UUID.</td>\n<td>True</td>\n</tr>\n<tr>\n<td>partial</td>\n<td>Records provided are only a partial set.</td>\n<td></td>\n</tr>\n<tr>\n<td>overwrite</td>\n<td>Overwrite existing relationship records which can only have one related record (only applies if partial is true).</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","relationships","records","{record uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"d99dee6b-86f7-4963-b73d-b584cd9f1eb6","name":"/applications/{application uuid}/relationships/records/{record uuid}","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"records\": {\n          \"25de465a-2b75-43f7-8d30-78a07db0504d\": [\n               \"591942e3-04cf-4f68-8d9b-38f8ce4991d3\"\n          ],\n          \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\": [\n               \"c66c0452-bda1-443e-8561-47d9dc20369f\",\n               \"c7b69eca-37c2-40cd-b4f9-7ce8638d3124\"\n          ]\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/{record uuid}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:50:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"records\": {\n            \"d8fc0269-39f5-4544-a979-47acbded2e5c\": 1,\n            \"e2d1d7ea-90cd-4b48-94f0-04fc543ac6ec\": 2\n        },\n        \"unavailable\": []\n    }\n}"}],"_postman_id":"795487ed-8254-4185-adc7-a9e68c7c1628"},{"name":"/applications/{application uuid}/relationships/records/{record uuid}","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"6e9a0baa-0eec-4c95-adc1-4064583fe0c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n     \"tables\": [\n          \"25de465a-2b75-43f7-8d30-78a07db0504d\"\n     ]\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/{record uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Delete relationships for given records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tables</td>\n<td>Array of related tables to delete relationships records for. If omitted all relationship records are deleted for provided record.</td>\n<td><br /></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","relationships","records","{record uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"76fca256-f156-480b-b97a-3ed95d5664a6","name":"/applications/{application uuid}/relationships/records/{record uuid}","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n     \"tables\": [\n          \"25de465a-2b75-43f7-8d30-78a07db0504d\"\n     ]\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/records/{record uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:52:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": []\n}"}],"_postman_id":"6e9a0baa-0eec-4c95-adc1-4064583fe0c4"},{"name":"/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/shared/applications","id":"a910f090-bbed-45bd-9237-0202ce96ac5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/shared/applications","description":"<h4 id=\"description\">Description:</h4>\n<p>Get applications record is shared with.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records","{record uuid}","shared","applications"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"a6f88136-d4b6-4cd4-a0fe-dce9cdb73b37","name":"/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/shared/applications","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/shared/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 12:25:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"64"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        \"055acd65-3187-4d29-acb7-afdeec789839\"\n    ]\n}"}],"_postman_id":"a910f090-bbed-45bd-9237-0202ce96ac5e"},{"name":"applications/{application uuid}/relationships/{relationship uuid}/records/{record uuid}/logs","id":"00f98923-ad65-496f-9576-6a4562d18ef1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/{relationship uuid}/records/{record uuid}/logs","description":"<h4 id=\"description\">Description:</h4>\n<p>Get relationship record logs.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","relationships","{relationship uuid}","records","{record uuid}","logs"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"2cbf4c0a-08f1-4c39-b5f3-845ad93e12d9","name":"applications/{application uuid}/relationships/{relationship uuid}/records/{record uuid}/logs","originalRequest":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/{relationship uuid}/records/{record uuid}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Oct 2022 15:20:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"509"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"0b44862c-f492-44fd-b26d-00deed71f5ed\": [\n            {\n                \"modified\": 1665674350,\n                \"modified_by\": {\n                    \"name\": \"Cvetozar Kalchev\",\n                    \"uuid\": \"1e917d7d-7a7d-4a2a-be20-b672ae314b14\",\n                    \"email\": \"cvet@shotflow.com\"\n                },\n                \"related_record_uuid\": \"9683f8b2-1930-44c3-bafa-780b9262a763\",\n                \"value\": \"Brown\"\n            },\n            {\n                \"modified\": 1665674366,\n                \"modified_by\": {\n                    \"name\": \"Cvetozar Kalchev\",\n                    \"uuid\": \"1e917d7d-7a7d-4a2a-be20-b672ae314b14\",\n                    \"email\": \"cvet@shotflow.com\"\n                },\n                \"related_record_uuid\": \"f78ba5ca-7fee-4c0d-9bf7-9d86cf39ff68\",\n                \"value\": \"Pale Turquoise\"\n            }\n        ]\n    }\n}"}],"_postman_id":"00f98923-ad65-496f-9576-6a4562d18ef1"}],"id":"f3f9f442-7759-4cdc-a9c4-ff7723410bd1","_postman_id":"f3f9f442-7759-4cdc-a9c4-ff7723410bd1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Records - Tables","item":[{"name":"/applications/{application uuid}/tables/{table uuid}/records/query","id":"945361bb-8c46-460f-a0ab-a9c68ebcd55b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"fields\": [\n          \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n          \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\"\n     ],\n     \"query\": {\n          \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": {\n               \"$ct\": \"Television_Teal\"\n          }\n     },\n     \"options\": {\n          \"order\": \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n          \"limit\": 20\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/query","description":"<h4 id=\"description\">Description:</h4>\n<p>Query table records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fields</td>\n<td>An array of field UUIDs to use when return records.</td>\n<td></td>\n</tr>\n<tr>\n<td>query</td>\n<td>The query to filter records on, see Queries for more information.</td>\n<td></td>\n</tr>\n<tr>\n<td>options</td>\n<td>The options for the records being returned, see Queries for more information.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records","query"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"aca2c0f4-0ae3-42eb-bbea-71e8bc75a01d","name":"/applications/{application uuid}/tables/{table uuid}/records/query","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"fields\": [\n          \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n          \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\"\n     ],\n     \"query\": {\n          \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": {\n               \"$ct\": \"Television_Teal\"\n          }\n     },\n     \"options\": {\n          \"order\": \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n          \"limit\": 20\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 12:22:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1205"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"12_1111246205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"18_6772043205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"44_4583414205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"45_4744255205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"48_7134845205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"55_2223414205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"55_6406635205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"60_6874845205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"86_7556403205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        },\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"90_2053053205_Television_Teal\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\"\n        }\n    ]\n}"}],"_postman_id":"945361bb-8c46-460f-a0ab-a9c68ebcd55b"},{"name":"/applications/{application uuid}/tables/{table uuid}/records","id":"29e2b7c1-709b-404c-9bee-d883c8a2150d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"Barcode text\",\n            \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\": \"IdbaBnhVlD\",\n            \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\": 7,\n            \"8fa972a1-0b86-45d1-85c0-2adf9085e839\": 27,\n            \"183e15a9-4330-4fda-a8a9-8c504c377afd\": \"studio\",\n            \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\": \"regular\",\n            \"5d06d061-36c8-499f-b1f1-e3395a372766\": \"Default Text\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"top\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records","description":"<h4 id=\"description\">Description:</h4>\n<p>Create table records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>records</td>\n<td>Records to create.</td>\n<td>True</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"0e63ff12-6833-454d-950e-2340b55afc37","name":"/applications/{application uuid}/tables/{table uuid}/records","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"Barcode text\",\n            \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\": \"IdbaBnhVlD\",\n            \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\": 7,\n            \"8fa972a1-0b86-45d1-85c0-2adf9085e839\": 27,\n            \"183e15a9-4330-4fda-a8a9-8c504c377afd\": \"studio\",\n            \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\": \"regular\",\n            \"5d06d061-36c8-499f-b1f1-e3395a372766\": \"Default Text\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"top\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 12:03:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1319"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"5ccb21e5-5027-440f-af96-6a2295234d71\": \"f1f2af78-4b02-4d18-9faf-22d44bc0881f\",\n            \"78c2654b-14b8-4238-9261-d83c124d118f\": null,\n            \"e42b678f-7b31-405f-b253-2b3c04296233\": null,\n            \"988797a1-da61-4c4a-91ed-7f796509ccf2\": {\n                \"name\": \"Cvetozar Kalchev\",\n                \"uuid\": \"1e917d7d-7a7d-4a2a-be20-b672ae314b14\",\n                \"email\": \"cvet@shotflow.com\"\n            },\n            \"ef556630-fc3e-4c81-8134-9ea7063c5203\": null,\n            \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\": 1656417826,\n            \"b58d4e60-415d-45d5-ad99-e46aa0af3174\": null,\n            \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\": {\n                \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=IdbaBnhVlD&type=C128&width=1&height=30&text=true\\\" alt=\\\"IdbaBnhVlD\\\" />\",\n                \"value\": \"IdbaBnhVlD\"\n            },\n            \"aba5c3a3-aae6-4550-819e-a67a910f4167\": null,\n            \"741fc317-6083-4f63-97e9-bab8f357bc80\": null,\n            \"d952074b-8943-498c-8f1e-6a8e3b9e69a3\": null,\n            \"be20c42b-460e-4e9f-9f6d-123eb0ca06b4\": null,\n            \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"Barcode text\",\n            \"4705ead2-e46d-4732-b682-b0d1a1e9862f\": null,\n            \"8fa972a1-0b86-45d1-85c0-2adf9085e839\": 27,\n            \"5d06d061-36c8-499f-b1f1-e3395a372766\": \"Default Text\",\n            \"183e15a9-4330-4fda-a8a9-8c504c377afd\": \"Studio\",\n            \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\": 7,\n            \"a14dbdad-6c36-46b4-a406-c6a2afffc2ed\": \"Yes\",\n            \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\": \"Regular\",\n            \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\",\n            \"c691f449-2904-44aa-80a0-9edc011391c6\": null\n        }\n    ]\n}"}],"_postman_id":"29e2b7c1-709b-404c-9bee-d883c8a2150d"},{"name":"/applications/{application uuid}/tables/{table uuid}/records","id":"e4b8c724-e6de-46a2-8027-280113bc0110","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": {\n        \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\": 7,\n        \"8fa972a1-0b86-45d1-85c0-2adf9085e839\": 27,\n        \"183e15a9-4330-4fda-a8a9-8c504c377afd\": \"studio\",\n        \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\": \"regular\",\n        \"5d06d061-36c8-499f-b1f1-e3395a372766\": \"Default Text\",\n        \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"top\"\n    },\n    \"query\": {\n        \"5ccb21e5-5027-440f-af96-6a2295234d71\": {\n            \"$eq\": \"f1f2af78-4b02-4d18-9faf-22d44bc0881f\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records","description":"<h4 id=\"description\">Description:</h4>\n<p>Update existing table records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>query</td>\n<td>The query to filter records on, see Queries for more information. If query is not set then record uuids are required in array of record objects.</td>\n<td></td>\n</tr>\n<tr>\n<td>records</td>\n<td>Values to update indexed by field UUID.</td>\n<td>True</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"6f14978d-f761-491e-9e34-717d7f5d1744","name":"/applications/{application uuid}/tables/{table uuid}/records Copy","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": {\n        \"e32eb69d-23dd-46c3-93ee-d44504a3a01a\": 7,\n        \"8fa972a1-0b86-45d1-85c0-2adf9085e839\": 27,\n        \"183e15a9-4330-4fda-a8a9-8c504c377afd\": \"studio\",\n        \"0837243e-2ea3-4f3c-b7b1-b641c8f88d07\": \"regular\",\n        \"5d06d061-36c8-499f-b1f1-e3395a372766\": \"Default Text\",\n        \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"top\"\n    },\n    \"query\": {\n        \"5ccb21e5-5027-440f-af96-6a2295234d71\": {\n            \"$eq\": \"f1f2af78-4b02-4d18-9faf-22d44bc0881f\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 12:05:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"37"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"updated\": 1\n    }\n}"}],"_postman_id":"e4b8c724-e6de-46a2-8027-280113bc0110"},{"name":"/applications/{application uuid}/tables/{table uuid}/records","id":"8d3e8b0c-4cc4-4c7b-b479-7ea9436b3ce5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n     \"query\": {\n          \"5ccb21e5-5027-440f-af96-6a2295234d71\": {\n               \"$in\": [\n                    \"f1f2af78-4b02-4d18-9faf-22d44bc0881f\"\n               ]\n          }\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records","description":"<h4 id=\"description\">Description:</h4>\n<p>Delete table records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>query</td>\n<td>The query to filter records on, see Queries for more information. If no query is provided all records are deleted.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"a09de478-4565-4493-a91f-0b1842785952","name":"/applications/{application uuid}/tables/{table uuid}/records","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n     \"query\": {\n          \"5ccb21e5-5027-440f-af96-6a2295234d71\": {\n               \"$in\": [\n                    \"f1f2af78-4b02-4d18-9faf-22d44bc0881f\"\n               ]\n          }\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 12:07:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"37"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"deleted\": 1\n    }\n}"}],"_postman_id":"8d3e8b0c-4cc4-4c7b-b479-7ea9436b3ce5"},{"name":"/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/logs","id":"96d6f133-0946-42bc-89ed-6160561bc475","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/logs","description":"<h4 id=\"description\">Description:</h4>\n<p>Get table record logs.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","{table uuid}","records","{record uuid}","logs"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"fdc50156-fd75-46f8-a825-9ea61ef5ff35","name":"https://platform.shotflow.com/api/applications/{application uuid}/relationships/{relationship uuid}/records/{record uuid}/logs","originalRequest":{"method":"GET","header":[],"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/{table uuid}/records/{record uuid}/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Oct 2022 15:22:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"391"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"b8b514ff-651f-422d-8c9b-bccb94f20778\": [\n            {\n                \"modified\": 1665674385,\n                \"modified_by\": {\n                    \"name\": \"Cvetozar Kalchev\",\n                    \"uuid\": \"1e917d7d-7a7d-4a2a-be20-b672ae314b14\",\n                    \"email\": \"cvet@shotflow.com\"\n                },\n                \"value\": \"First Value\"\n            },\n            {\n                \"modified\": 1665674400,\n                \"modified_by\": {\n                    \"name\": \"Cvetozar Kalchev\",\n                    \"uuid\": \"1e917d7d-7a7d-4a2a-be20-b672ae314b14\",\n                    \"email\": \"cvet@shotflow.com\"\n                },\n                \"value\": \"Second Value\"\n            }\n        ]\n    }\n}"}],"_postman_id":"96d6f133-0946-42bc-89ed-6160561bc475"}],"id":"4e0f4d62-6c4d-4805-ac9f-d250477e9afc","_postman_id":"4e0f4d62-6c4d-4805-ac9f-d250477e9afc","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Records - Views","item":[{"name":"/applications/{application uuid}/tables/views/{view uuid}/records/query","id":"70a23636-b586-4ebc-99c1-f4c85bc5d895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"options\": {\n          \"order\": {\n               \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"asc\"\n          },\n          \"limit\": 2\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}/records/query","description":"<h4 id=\"description\">Description:</h4>\n<p>Query table view records.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>options</td>\n<td>The options for the records being returned, see Queries for more information.</td>\n<td></td>\n</tr>\n<tr>\n<td>query</td>\n<td>Query records being returned, see Queries for more information.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","views","{view uuid}","records","query"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"013a08b6-9add-4f54-97cf-4b6c7d82e5d5","name":"/applications/{application uuid}/tables/views/{view uuid}/records/query","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"options\": {\n          \"order\": {\n               \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"asc\"\n          },\n          \"limit\": 2\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}/records/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 13:35:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2751"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"tables\": {\n                \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\": {\n                    \"5ccb21e5-5027-440f-af96-6a2295234d71\": \"931de41e-f972-4aec-b7ca-82b620e915df\",\n                    \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"12_1111246137_Wagon_Fuchsia\",\n                    \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\": {\n                        \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=VATe1sHtJ5&type=C128&width=1&height=30&text=true\\\" alt=\\\"VATe1sHtJ5\\\" />\",\n                        \"value\": \"VATe1sHtJ5\"\n                    },\n                    \"78c2654b-14b8-4238-9261-d83c124d118f\": null,\n                    \"183e15a9-4330-4fda-a8a9-8c504c377afd\": null,\n                    \"988797a1-da61-4c4a-91ed-7f796509ccf2\": {\n                        \"name\": \"Rebecca Starr\",\n                        \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                        \"email\": \"rebecca@shotflow.com\"\n                    },\n                    \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\": 1580318811,\n                    \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\",\n                    \"c691f449-2904-44aa-80a0-9edc011391c6\": \"Ready\",\n                    \"e42b678f-7b31-405f-b253-2b3c04296233\": \"In Progress,On-Figure,Ready\"\n                },\n                \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\": {\n                    \"5e1344fc-595d-4d5f-a0cf-ad7b7d6f922d\": \"47f3c60e-ff69-4580-85f3-8c845b725941\",\n                    \"4bd10741-0467-439e-b6dd-f6186babc794\": \"3a259da8-8d1d-4adb-8690-77924613e63d\",\n                    \"0f8d57ef-5ed1-46f9-9459-fb9733f74367\": null,\n                    \"52f2d187-2118-4e59-8c38-66117e43b145\": \"121111246137\"\n                }\n            },\n            \"relationships\": {\n                \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\": [],\n                \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\": [\n                    \"0f621e09-c6de-4e6b-a50c-2fa08ec60106\",\n                    \"5667a2d8-499a-47f5-a80b-4b13c9987fbc\",\n                    \"9c4ca8a8-dba1-464b-9b28-43b2d98afbe5\"\n                ]\n            }\n        },\n        {\n            \"tables\": {\n                \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\": {\n                    \"5ccb21e5-5027-440f-af96-6a2295234d71\": \"cc57f9bc-84ee-4692-9ce0-fd9b9254dc50\",\n                    \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"12_1111246180_Television_Blue\",\n                    \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\": {\n                        \"barcode\": \"<img src=\\\"https://qa.shotflow.com/api/barcode?value=SqlPgO3mnF&type=C128&width=1&height=30&text=true\\\" alt=\\\"SqlPgO3mnF\\\" />\",\n                        \"value\": \"SqlPgO3mnF\"\n                    },\n                    \"78c2654b-14b8-4238-9261-d83c124d118f\": null,\n                    \"183e15a9-4330-4fda-a8a9-8c504c377afd\": null,\n                    \"988797a1-da61-4c4a-91ed-7f796509ccf2\": {\n                        \"name\": \"Rebecca Starr\",\n                        \"uuid\": \"80e17c32-45eb-4580-a414-aecb56601e07\",\n                        \"email\": \"rebecca@shotflow.com\"\n                    },\n                    \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\": 1580318811,\n                    \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\": \"TOP\",\n                    \"c691f449-2904-44aa-80a0-9edc011391c6\": \"Ready\",\n                    \"e42b678f-7b31-405f-b253-2b3c04296233\": \"Completed,In Progress,In Progress\"\n                },\n                \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\": {\n                    \"5e1344fc-595d-4d5f-a0cf-ad7b7d6f922d\": \"3a780751-7171-41e2-9869-c032a57c1bc2\",\n                    \"4bd10741-0467-439e-b6dd-f6186babc794\": \"3a259da8-8d1d-4adb-8690-77924613e63d\",\n                    \"0f8d57ef-5ed1-46f9-9459-fb9733f74367\": null,\n                    \"52f2d187-2118-4e59-8c38-66117e43b145\": \"121111246180\"\n                }\n            },\n            \"relationships\": {\n                \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\": [],\n                \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\": [\n                    \"37445d3a-a7e9-4f45-b2f5-20cff774a81c\",\n                    \"8760dce9-7814-4ab8-90a4-9c10d684a271\",\n                    \"b9d1ab2d-2117-47e2-bc23-abeba9de6e25\"\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"70a23636-b586-4ebc-99c1-f4c85bc5d895"}],"id":"7f868692-70e6-45c2-b057-5673c19a9d49","_postman_id":"7f868692-70e6-45c2-b057-5673c19a9d49","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Views","item":[{"name":"/applications/{application uuid}/tables/views/{view uuid}","id":"082342f5-55cb-4eda-9bae-9b630226bbaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Get a table view.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","views","{view uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"df61b4c6-324b-4c58-9150-936f3a57d0f4","name":"/applications/{application uuid}/tables/views/{view uuid}","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 13:31:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"22a86bf2-5ab2-4739-9e63-2b3f8523ea70\",\n        \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n        \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n        \"name\": \"All Samples\",\n        \"alias\": \"all_samples\",\n        \"description\": null,\n        \"capture_module\": false,\n        \"type\": null,\n        \"query\": null,\n        \"order\": null,\n        \"summary\": false,\n        \"pagination\": 50,\n        \"protected\": false,\n        \"created\": 1655214998,\n        \"created_by\": {\n            \"name\": \"Caroline Polakowska\",\n            \"uuid\": \"0e09900b-491d-413a-a12c-d3062b00c7a3\",\n            \"email\": \"caroline@shotflow.com\"\n        },\n        \"modified\": null,\n        \"modified_by\": null,\n        \"actions\": [\n            {\n                \"uuid\": \"b9c2de1e-8a7e-43bd-8050-6fea54440d62\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Label\",\n                \"description\": null,\n                \"type\": \"label\",\n                \"config\": {\n                    \"label\": \"eb330a4e-67e3-4567-9899-894bf1753478\"\n                }\n            },\n            {\n                \"uuid\": \"c6917863-44e9-4ccf-8b15-cbd5b270ea6d\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Relationship\",\n                \"description\": null,\n                \"type\": \"relationship\",\n                \"config\": null\n            },\n            {\n                \"uuid\": \"7da97c31-0bc6-41e3-8b14-1daf1750f3a1\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Delete\",\n                \"description\": null,\n                \"type\": \"delete\",\n                \"config\": null\n            },\n            {\n                \"uuid\": \"a67024ec-4f9f-419e-9c39-0c7879516aac\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Update (no fields)\",\n                \"description\": null,\n                \"type\": \"update\",\n                \"config\": null\n            },\n            {\n                \"uuid\": \"605cbcfb-3f6e-431d-a0ad-fd5940f97719\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Assign to Shipment\",\n                \"description\": null,\n                \"type\": \"relationship\",\n                \"config\": {\n                    \"relationship\": \"d8fc0269-39f5-4544-a979-47acbded2e5c\"\n                }\n            },\n            {\n                \"uuid\": \"da4c916c-f16b-45bf-8e20-b14f1969e6d3\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Update Location\",\n                \"description\": \"Move all Samples to a common Location\",\n                \"type\": \"update\",\n                \"config\": [\n                    {\n                        \"field\": \"183e15a9-4330-4fda-a8a9-8c504c377afd\"\n                    }\n                ]\n            },\n            {\n                \"uuid\": \"09260e61-734b-4882-a29c-9596395c46dd\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"name\": \"Update Status\",\n                \"description\": \"Update Status to a new user-selected value\",\n                \"type\": \"update\",\n                \"config\": [\n                    {\n                        \"field\": \"c691f449-2904-44aa-80a0-9edc011391c6\"\n                    }\n                ]\n            }\n        ],\n        \"record_actions\": [\n            \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\"\n        ],\n        \"items\": [\n            {\n                \"type\": \"field\",\n                \"uuid\": \"f512a1a2-ca5f-48af-aaca-6b785e7807e4\",\n                \"settings\": null,\n                \"item_name\": \"Barcode Text\",\n                \"item_uuid\": \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\",\n                \"field_type\": \"text\",\n                \"item_alias\": \"barcode_text\",\n                \"sort_order\": 0,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": [],\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"d9d859d7-40b0-473c-85db-54fbdf4951b0\",\n                \"settings\": {\n                    \"display\": \"barcode\"\n                },\n                \"item_name\": \"Barcode Value\",\n                \"item_uuid\": \"b5fcd8b6-4746-4428-beb5-129be98ee7f5\",\n                \"field_type\": \"barcode\",\n                \"item_alias\": \"barcode_value\",\n                \"sort_order\": 1,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"text\": true,\n                    \"type\": \"C128\",\n                    \"width\": 1,\n                    \"height\": 30,\n                    \"length\": 10\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"328c3601-e2d8-465b-8294-fe652149526a\",\n                \"settings\": {\n                    \"display\": \"preview\"\n                },\n                \"item_name\": \"Reference Image\",\n                \"item_uuid\": \"78c2654b-14b8-4238-9261-d83c124d118f\",\n                \"field_type\": \"file\",\n                \"item_alias\": \"reference_image\",\n                \"sort_order\": 2,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"types\": [\n                        \"pdf\",\n                        \"png\",\n                        \"jpg\",\n                        \"jpeg\"\n                    ]\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": \"Required by Samples & Styling mobile app\",\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"6e05dc0d-5022-429d-aef0-394cce60309e\",\n                \"settings\": null,\n                \"item_name\": \"Location\",\n                \"item_uuid\": \"183e15a9-4330-4fda-a8a9-8c504c377afd\",\n                \"field_type\": \"text_options\",\n                \"item_alias\": \"location\",\n                \"sort_order\": 3,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"options\": [\n                        \"Prep Area\",\n                        \"Studio\",\n                        \"On Set\"\n                    ]\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": \"Required by Samples & Styling mobile app\",\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"09c196ef-fbd8-4759-b1a6-fe8f65c45a2b\",\n                \"settings\": null,\n                \"item_name\": \"Created By\",\n                \"item_uuid\": \"988797a1-da61-4c4a-91ed-7f796509ccf2\",\n                \"field_type\": \"user\",\n                \"item_alias\": \"created_by\",\n                \"sort_order\": 4,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"8e022cd9-9927-4364-a3c8-8343e5dbe1ed\",\n                \"settings\": null,\n                \"item_name\": \"Created\",\n                \"item_uuid\": \"90bc654b-7b82-49ec-b5bd-3dd1c8eccc75\",\n                \"field_type\": \"timestamp\",\n                \"item_alias\": \"created\",\n                \"sort_order\": 5,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"format\": \"MM/DD/YYYY h:mm:ssa\"\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"da0bb052-4d35-486a-b1e3-e93b90422b74\",\n                \"settings\": null,\n                \"item_name\": \"Type\",\n                \"item_uuid\": \"bd84cd08-5c10-4d4e-be9f-d9ff855cd99d\",\n                \"field_type\": \"text_options\",\n                \"item_alias\": \"type\",\n                \"sort_order\": 6,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"options\": [\n                        \"Sales\",\n                        \"DC Inventory\",\n                        \"TOP\",\n                        \"Pre-production\"\n                    ]\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": \"Supports defining different typing categories or values for workflows where Sample Type is relevant\",\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"596810c2-69e7-4a9a-976c-27f2fd2e24d9\",\n                \"settings\": null,\n                \"item_name\": \"Status\",\n                \"item_uuid\": \"c691f449-2904-44aa-80a0-9edc011391c6\",\n                \"field_type\": \"text_options\",\n                \"item_alias\": \"status\",\n                \"sort_order\": 7,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"options\": [\n                        \"Awaiting Assignment\",\n                        \"Assigned\",\n                        \"Received\",\n                        \"Requested\",\n                        \"Delivered\",\n                        \"In Transit\",\n                        \"Sold\",\n                        \"Ready\",\n                        \"Cancelled\",\n                        \"Missing\",\n                        \"Returned\",\n                        \"In Production\"\n                    ]\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": \"Required by Samples &amp; Styling mobile app\",\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"c9d63ec1-63a4-4396-8f0e-61f4d02f89e9\",\n                \"settings\": null,\n                \"item_name\": \"Shot Statuses\",\n                \"item_uuid\": \"e42b678f-7b31-405f-b253-2b3c04296233\",\n                \"field_type\": \"related_records_dynamic\",\n                \"item_alias\": \"shot_statuses\",\n                \"sort_order\": 8,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": {\n                    \"field\": \"0383fd55-07f3-4151-9e2b-1b0a8e4afbab\",\n                    \"query\": null,\n                    \"filter\": null,\n                    \"aggregate\": false,\n                    \"delimiter\": \",\",\n                    \"relationship\": \"e2d1d7ea-90cd-4b48-94f0-04fc543ac6ec\"\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"8afa6f97-dc98-4a04-b4e1-618f1c1ce378\",\n                \"settings\": null,\n                \"item_name\": \"UUID\",\n                \"item_uuid\": \"5ccb21e5-5027-440f-af96-6a2295234d71\",\n                \"field_type\": \"uuid\",\n                \"item_alias\": \"uuid\",\n                \"sort_order\": 9,\n                \"table_name\": \"Samples\",\n                \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n                \"table_alias\": \"samples\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"view\",\n                \"uuid\": \"0f57987f-44b0-4388-97ac-d233d6014cfa\",\n                \"settings\": null,\n                \"item_name\": \"Request new view\",\n                \"item_uuid\": \"510bc876-ff82-454e-aeca-2dca13cc1c1e\",\n                \"field_type\": null,\n                \"item_alias\": \"request_new_view\",\n                \"sort_order\": 10,\n                \"table_name\": \"Requests\",\n                \"table_uuid\": \"78f5600a-3ecb-44ad-9c7f-a9dc7f3c2188\",\n                \"table_alias\": \"requests\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"view\",\n                \"uuid\": \"b6043e89-1030-4d3e-8e61-d660f76140d4\",\n                \"settings\": null,\n                \"item_name\": \"All Shots\",\n                \"item_uuid\": \"564cb489-188f-46a1-b11a-9c4c4ede9c29\",\n                \"field_type\": null,\n                \"item_alias\": \"all_shots\",\n                \"sort_order\": 11,\n                \"table_name\": \"Shots\",\n                \"table_uuid\": \"3bfa41c4-39a9-45db-bf75-ce6461fdcd5b\",\n                \"table_alias\": \"shots\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"d19f95fe-5327-48a6-a90d-e75f44198517\",\n                \"settings\": null,\n                \"item_name\": \"Status\",\n                \"item_uuid\": \"0f8d57ef-5ed1-46f9-9459-fb9733f74367\",\n                \"field_type\": \"text_options\",\n                \"item_alias\": \"status\",\n                \"sort_order\": 12,\n                \"table_name\": \"Product Parents\",\n                \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                \"table_alias\": \"product_parents\",\n                \"field_settings\": {\n                    \"options\": [\n                        \"Activated\",\n                        \"Pending\",\n                        \"Discontinued\"\n                    ]\n                },\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\"\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"01e1b2e3-98b1-446c-8701-8398867c4eef\",\n                \"settings\": null,\n                \"item_name\": \"SKU\",\n                \"item_uuid\": \"52f2d187-2118-4e59-8c38-66117e43b145\",\n                \"field_type\": \"text\",\n                \"item_alias\": \"sku\",\n                \"sort_order\": 13,\n                \"table_name\": \"Product Children\",\n                \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                \"table_alias\": \"product_children\",\n                \"field_settings\": [],\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"15b5cfe2-5fbd-4f7a-8734-7e3ece66e36f\",\n                \"settings\": null,\n                \"item_name\": \"UUID\",\n                \"item_uuid\": \"5e1344fc-595d-4d5f-a0cf-ad7b7d6f922d\",\n                \"field_type\": \"uuid\",\n                \"item_alias\": \"uuid\",\n                \"sort_order\": 14,\n                \"table_name\": \"Product Children\",\n                \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n                \"table_alias\": \"product_children\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": null\n            },\n            {\n                \"type\": \"field\",\n                \"uuid\": \"bd94411f-c9e0-4a8b-ab2d-a686e8ee7316\",\n                \"settings\": null,\n                \"item_name\": \"UUID\",\n                \"item_uuid\": \"4bd10741-0467-439e-b6dd-f6186babc794\",\n                \"field_type\": \"uuid\",\n                \"item_alias\": \"uuid\",\n                \"sort_order\": 15,\n                \"table_name\": \"Product Parents\",\n                \"table_uuid\": \"b0c5a70f-ea32-4ec1-b415-0beadc76f48a\",\n                \"table_alias\": \"product_parents\",\n                \"field_settings\": null,\n                \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n                \"field_description\": null,\n                \"inherited_table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\"\n            }\n        ]\n    }\n}"}],"_postman_id":"082342f5-55cb-4eda-9bae-9b630226bbaa"},{"name":"/applications/{application uuid}/tables/views/query","id":"d0aa7206-2cb7-4bd2-b9ab-3638c585b331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"name\": {\n            \"$ct\": \"Samples\"\n        }\n    },\n    \"options\": {\n        \"limit\": 2\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/query","description":"<h4 id=\"description\">Description:</h4>\n<p>Query table views.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>options</td>\n<td>The options for the views being returned, see Queries for more information (only favorite, limit and offset apply). If favorite is set to true then the favorite flag is added to the view objects and favorited views for the logged in user are returned first.</td>\n<td></td>\n</tr>\n<tr>\n<td>query</td>\n<td>Query to apply to view being returned, see Queries for more information (only \"name\" and \"table_uuid\" apply).</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","views","query"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"86435cc7-6f4d-4442-bfad-6f7481d9c2fd","name":"/applications/{application uuid}/tables/views/query","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"name\": {\n            \"$ct\": \"Samples\"\n        }\n    },\n    \"options\": {\n        \"limit\": 2\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 13:33:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1370"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"uuid\": \"22a86bf2-5ab2-4739-9e63-2b3f8523ea70\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"table_uuid\": \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\",\n            \"name\": \"All Samples\",\n            \"alias\": \"all_samples\",\n            \"description\": null,\n            \"actions\": [\n                \"b9c2de1e-8a7e-43bd-8050-6fea54440d62\",\n                \"c6917863-44e9-4ccf-8b15-cbd5b270ea6d\",\n                \"7da97c31-0bc6-41e3-8b14-1daf1750f3a1\",\n                \"a67024ec-4f9f-419e-9c39-0c7879516aac\",\n                \"605cbcfb-3f6e-431d-a0ad-fd5940f97719\",\n                \"da4c916c-f16b-45bf-8e20-b14f1969e6d3\",\n                \"09260e61-734b-4882-a29c-9596395c46dd\"\n            ],\n            \"query\": null,\n            \"order\": null,\n            \"pagination\": 50,\n            \"record_actions\": [\n                \"9df9ecec-1d23-4ae8-bf7e-1f259a48f074\"\n            ],\n            \"summary\": false,\n            \"protected\": false,\n            \"modified\": null,\n            \"created\": 1655214998,\n            \"created_by\": {\n                \"name\": \"Caroline Polakowska\",\n                \"uuid\": \"0e09900b-491d-413a-a12c-d3062b00c7a3\",\n                \"email\": \"caroline@shotflow.com\"\n            },\n            \"modified_by\": null\n        },\n        {\n            \"uuid\": \"91dbc78e-c2d9-4575-a30a-becd35c74f86\",\n            \"application_uuid\": \"5e5133c3-86e5-4fba-9e8a-8f50ba6064bf\",\n            \"table_uuid\": \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\",\n            \"name\": \"PC Awaiting Samples\",\n            \"alias\": \"pc_awaiting_samples\",\n            \"description\": null,\n            \"actions\": [\n                \"fb39965f-c4e1-43ea-bcdd-39523d32def7\",\n                \"451ab146-30ae-4a5f-aa53-0d29aeae84d3\"\n            ],\n            \"query\": null,\n            \"order\": null,\n            \"pagination\": 50,\n            \"record_actions\": [\n                \"fe52ce5f-dde5-44e0-aac6-3d3a6e19fb4b\"\n            ],\n            \"summary\": false,\n            \"protected\": false,\n            \"modified\": null,\n            \"created\": null,\n            \"created_by\": null,\n            \"modified_by\": null\n        }\n    ]\n}"}],"_postman_id":"d0aa7206-2cb7-4bd2-b9ab-3638c585b331"},{"name":"/applications/{application uuid}/tables/views/{view uuid}/export","id":"dfc19fa8-a1c6-4875-ac0a-2f3f45cf4656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"options\": {\n          \"order\": {\n               \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"asc\"\n          },\n          \"timezone\": \"America/Toronto\"\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}/export","description":"<h4 id=\"description\">Description:</h4>\n<p>Export table view.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>options</td>\n<td>The options for the records being exported, see Queries for more information (only \"order\" and \"timezone\" apply).</td>\n<td></td>\n</tr>\n<tr>\n<td>query</td>\n<td>Query records being exported, see Queries for more information.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","tables","views","{view uuid}","export"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"ac243392-c833-48c9-b119-31bfe05f946a","name":"/applications/{application uuid}/tables/views/{view uuid}/export","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"options\": {\n          \"order\": {\n               \"a1fff3b4-32f7-49c3-b308-1e5bdb766fef\": \"asc\"\n          },\n          \"timezone\": \"America/Toronto\"\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/tables/views/{view uuid}/export"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 13:34:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"142"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": \"https://qa.shotflow.com/downloads/5e5133c3-86e5-4fba-9e8a-8f50ba6064bf/2e3e05d5-0b28-47e1-91ae-3310c0a3a949.csv\"\n}"}],"_postman_id":"dfc19fa8-a1c6-4875-ac0a-2f3f45cf4656"}],"id":"2eceaffa-e6c4-45f4-a82a-644274370528","_postman_id":"2eceaffa-e6c4-45f4-a82a-644274370528","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}},{"name":"Files","item":[{"name":"/applications/{application uuid}/files/{file uuid}","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"7ae2d9f0-3565-4fcf-8f61-f7397cfe2e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Get file contents.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","files","{file uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ae2d9f0-3565-4fcf-8f61-f7397cfe2e7d"},{"name":"/applications/{application uuid}/files/{file uuid}/download","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"b3ac89b0-367d-4067-82fa-ff2b593c21e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}/download","description":"<h4 id=\"description\">Description:</h4>\n<p>Download file.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","files","{file uuid}","download"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3ac89b0-367d-4067-82fa-ff2b593c21e0"},{"name":"/applications/{application uuid}/files/{file uuid}","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"0dc90120-8211-4a59-9394-ab71f7ae8cae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"ShotFlow Icon\",\n    \"source\": \"ShotFlow-favicon-270x270.png\"\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Create or update file (if file uuid is omitted then a new file is created).</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>source</td>\n<td>File source.</td>\n<td>True</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the file without extension.</td>\n<td>True</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","files","{file uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"05bedb03-7760-4707-aaa2-bf4f87533088","name":"/applications/{application uuid}/files/{file uuid}","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"name\": \"ShotFlow Icon\",\n     \"source\": \"ShotFlow-favicon-270x270.png\"\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:26:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"707"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"uuid\": \"5d1a4b55-3eb7-4d5f-a72a-a7e012d73ad6\",\n        \"name\": \"ShotFlow Icon\",\n        \"alias\": \"shotflow_icon\",\n        \"type\": \"jpg\",\n        \"data\": {\n            \"width\": 370,\n            \"height\": 370\n        },\n        \"created\": 1651502636,\n        \"updated\": 1656415618,\n        \"sources\": [\n            {\n                \"uuid\": \"64a0c9dc-07e2-4ff6-ae3d-8c3525526832\",\n                \"name\": \"large\",\n                \"alias\": \"large\",\n                \"type\": \"png\",\n                \"data\": {\n                    \"width\": 500,\n                    \"height\": 500\n                },\n                \"created\": 1651502636,\n                \"updated\": null\n            },\n            {\n                \"uuid\": \"44564151-2b99-4276-9caa-646b5b4e8a19\",\n                \"name\": \"medium\",\n                \"alias\": \"medium\",\n                \"type\": \"png\",\n                \"data\": {\n                    \"width\": 250,\n                    \"height\": 250\n                },\n                \"created\": 1651502636,\n                \"updated\": null\n            },\n            {\n                \"uuid\": \"2d1661d2-046c-4ba1-bb6d-9b56a0281dfd\",\n                \"name\": \"small\",\n                \"alias\": \"small\",\n                \"type\": \"png\",\n                \"data\": {\n                    \"width\": 100,\n                    \"height\": 100\n                },\n                \"created\": 1651502636,\n                \"updated\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"0dc90120-8211-4a59-9394-ab71f7ae8cae"},{"name":"/applications/{application uuid}/files/query","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"081f726f-edd6-4629-937c-2cf17eaef304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"name\": {\n            \"$ct\": \"shotflow\"\n        },\n        \"type\": {\n            \"$in\": [\n                \"pdf\",\n                \"png\",\n                \"jpg\"\n            ]\n        }\n    },\n    \"options\": {\n        \"limit\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/query","description":"<h4 id=\"description\">Description:</h4>\n<p>Query files.</p>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>options</td>\n<td>The options for the files being returned, see Queries for more information (only \"limit\" and \"offset\" apply).</td>\n<td></td>\n</tr>\n<tr>\n<td>query</td>\n<td>Query to apply to files being returned, see Queries for more information (only \"name\" and \"type\" apply).</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","files","query"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"3fb20e73-1964-4369-96ed-0d637767c4bf","name":"/applications/{application uuid}/files/query","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"name\": {\n            \"$ct\": \"shotflow\"\n        },\n        \"type\": {\n            \"$in\": [\n                \"pdf\",\n                \"png\",\n                \"jpg\"\n            ]\n        }\n    },\n    \"options\": {\n        \"limit\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:29:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"709"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"uuid\": \"5d1a4b55-3eb7-4d5f-a72a-a7e012d73ad6\",\n            \"name\": \"ShotFlow Icon\",\n            \"alias\": \"shotflow_icon\",\n            \"type\": \"jpg\",\n            \"data\": {\n                \"width\": 370,\n                \"height\": 370\n            },\n            \"created\": 1651502636,\n            \"updated\": 1656415618,\n            \"sources\": [\n                {\n                    \"uuid\": \"64a0c9dc-07e2-4ff6-ae3d-8c3525526832\",\n                    \"name\": \"large\",\n                    \"alias\": \"large\",\n                    \"type\": \"png\",\n                    \"data\": {\n                        \"width\": 500,\n                        \"height\": 500\n                    },\n                    \"created\": 1651502636,\n                    \"updated\": null\n                },\n                {\n                    \"uuid\": \"44564151-2b99-4276-9caa-646b5b4e8a19\",\n                    \"name\": \"medium\",\n                    \"alias\": \"medium\",\n                    \"type\": \"png\",\n                    \"data\": {\n                        \"width\": 250,\n                        \"height\": 250\n                    },\n                    \"created\": 1651502636,\n                    \"updated\": null\n                },\n                {\n                    \"uuid\": \"2d1661d2-046c-4ba1-bb6d-9b56a0281dfd\",\n                    \"name\": \"small\",\n                    \"alias\": \"small\",\n                    \"type\": \"png\",\n                    \"data\": {\n                        \"width\": 100,\n                        \"height\": 100\n                    },\n                    \"created\": 1651502636,\n                    \"updated\": null\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"081f726f-edd6-4629-937c-2cf17eaef304"},{"name":"/applications/{application uuid}/files/{file uuid}","event":[{"listen":"prerequest","script":{"id":"0dda8149-1369-49cd-b33e-1dc9055497cc","exec":[""],"type":"text/javascript"}}],"id":"72a629a1-5936-44f5-9350-423574b437c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}","description":"<h4 id=\"description\">Description:</h4>\n<p>Delete file.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}},"urlObject":{"path":["applications","{application uuid}","files","{file uuid}"],"host":["https://platform.shotflow.com/api"],"query":[],"variable":[]}},"response":[{"id":"b8ae27f5-1169-43e3-b0ac-306abb90904e","name":"/applications/{application uuid}/files/{file uuid}","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://platform.shotflow.com/api/applications/{application uuid}/files/{file uuid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Jun 2022 11:34:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": []\n}"}],"_postman_id":"72a629a1-5936-44f5-9350-423574b437c6"}],"id":"277d1d74-a89b-4400-b682-07f620699f01","_postman_id":"277d1d74-a89b-4400-b682-07f620699f01","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]},"isInherited":true,"source":{"_postman_id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","id":"0bdec95c-3a5d-4e09-8511-9cd3feac0297","name":"Shotflow Public API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"api-token"},{"key":"value","value":"{token}"}]}},"event":[{"listen":"prerequest","script":{"id":"93fab0ed-a65e-42a5-8c2c-953fbbf13690","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5e318666-451e-41e1-a70d-2087cfe18dc9","type":"text/javascript","exec":[""]}}],"variable":[{"key":"URL","value":"https://platform.shotflow.com/api","type":"string"},{"key":"token","value":"{token}","type":"string"},{"key":"application uuid","value":"{application uuid}","type":"string"},{"key":"table uuid","value":"{table uuid}","type":"string"},{"key":"file uuid","value":"{file uuid}","type":"string"},{"key":"relationship uuid","value":"{relationship uuid}","type":"string"},{"key":"record uuid","value":"{record uuid}","type":"string"},{"key":"field uuid","value":"{field uuid}","type":"string"},{"key":"label uuid","value":"{label uuid}","type":"string"},{"key":"view uuid","value":"{view uuid}","type":"string"}]}