{"openapi":"3.1.0","info":{"title":"Open Mercato API","version":"0.8.0","description":"Auto-generated OpenAPI definition for all enabled modules."},"servers":[{"url":"https://dgital-base.kc-trade.cn/api","description":"Default environment"}],"paths":{"/auth/locale":{"get":{"operationId":"auth_get_auth_locale","summary":"Set locale and redirect","description":"Stores the selected locale in a cookie and redirects to a safe local path.","tags":["Authentication & Accounts"],"parameters":[{"name":"locale","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetParameters0Schema"},"example":"string","description":"A locale code this tenant serves — one of the `servable` entries returned by `GET /api/translations/locales`. Codes are canonicalized (`de-AT` → `de`)."},{"name":"redirect","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetParameters1Schema"},"example":"string"}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetResponses200ContentApplicationJsonSchema"}}}},"302":{"description":"Locale cookie set and request redirected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetResponses302ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid locale","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/locale?locale=string\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"auth_post_auth_locale","summary":"Set locale","description":"Stores the selected locale in a cookie and returns a JSON success response.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocalePostRequestBodyContentApplicationJsonSchema"},"example":{"locale":"string"}}}},"responses":{"200":{"description":"Locale cookie set","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocalePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid locale or malformed request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLocalePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/locale\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"locale\\\": \\\"string\\\"\n}\""}]}},"/auth/profile":{"get":{"operationId":"auth_get_auth_profile","summary":"Get current profile","description":"Returns the email address, display name, and roles for the signed-in user. The display name is null when unset.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Profile payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchema"},"example":{"email":"user@example.com","name":null,"roles":["string"]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"User not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/profile\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_profile","summary":"Update current profile","description":"Updates the email address or password for the signed-in user.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Profile updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"email":"user@example.com"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/profile\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/auth/roles/acl":{"get":{"operationId":"auth_get_auth_roles_acl","summary":"Fetch role ACL","description":"Returns the feature and organization assignments associated with a role within the current tenant.","tags":["Authentication & Accounts"],"parameters":[{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role ACL entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchema"},"example":{"isSuperAdmin":true,"features":["string"],"organizations":null,"updatedAt":null}}}},"400":{"description":"Invalid role id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/roles/acl?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_roles_acl","summary":"Update role ACL","description":"Replaces the feature list, super admin flag, and optional organization assignments for a role.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchema"},"example":{"roleId":"00000000-0000-4000-8000-000000000000","organizations":null}}}},"responses":{"200":{"description":"Role ACL updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"sanitized":true}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient privileges to modify ACL","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/roles/acl\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"roleId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"organizations\\\": null\n}\""}],"x-require-auth":true}},"/auth/roles":{"get":{"operationId":"auth_get_auth_roles","summary":"List roles","description":"Returns available roles within the current tenant. Super administrators receive visibility across tenants.","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetParameters3Schema"},"example":"string"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","usersCount":1,"tenantId":null,"tenantName":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/roles?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"auth_post_auth_roles","summary":"Create role","description":"Creates a new role anchored to the caller's tenant. Non-superadmins cannot target another tenant; supplying a foreign `tenantId` is rejected.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string"}}}},"responses":{"201":{"description":"Role created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_roles","summary":"Update role","description":"Updates mutable fields on an existing role.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Role updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_roles","summary":"Delete role","description":"Deletes a role by identifier. Fails when users remain assigned.","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Role identifier"}],"responses":{"200":{"description":"Role deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Role cannot be deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/auth/roles?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/sidebar/preferences":{"get":{"operationId":"auth_get_auth_sidebar_preferences","summary":"Get sidebar preferences","description":"Returns sidebar customization for the current user (default) or the specified role (`?roleId=…`, requires `auth.sidebar.manage`).","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Current sidebar configuration","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"canApplyToRoles":true,"roles":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","hasPreference":true}],"scope":{"type":"user"},"updatedAt":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing features for role-scope read","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Role not found in current tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/sidebar/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_sidebar_preferences","summary":"Update sidebar preferences","description":"Updates sidebar configuration. With `scope.type === \"user\"` (default) writes the calling user's personal preferences and may optionally apply the same settings to selected roles via `applyToRoles[]`. With `scope.type === \"role\"` writes the named role variant directly (requires `auth.sidebar.manage`); `applyToRoles[]` and `clearRoleIds[]` are rejected in this mode.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Preferences saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"canApplyToRoles":true,"roles":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","hasPreference":true}],"scope":{"type":"user"},"updatedAt":null,"appliedRoles":["00000000-0000-4000-8000-000000000000"],"clearedRoles":["00000000-0000-4000-8000-000000000000"]}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing features for role-wide updates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Role not found in current tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/sidebar/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_sidebar_preferences","summary":"Delete a role sidebar variant","description":"Removes the role variant for the current tenant + locale. Idempotent. Requires `auth.sidebar.manage`.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Variant deleted (or never existed)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"scope":{"type":"user"}}}}},"400":{"description":"Missing roleId query parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Role not found in current tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/auth/sidebar/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/sidebar/variants":{"get":{"operationId":"auth_get_auth_sidebar_variants","summary":"List sidebar variants","description":"Returns the named sidebar variants saved by the current user for the current tenant + locale.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Variant list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","variants":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true,"settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"createdAt":"string","updatedAt":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/sidebar/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"auth_post_auth_sidebar_variants","summary":"Create a sidebar variant","description":"Creates a new variant. If `name` is omitted or blank, an auto-name like \"My preferences\", \"My preferences 2\", … is assigned.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Variant created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","variant":{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true,"settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"createdAt":"string","updatedAt":null}}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/sidebar/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/auth/users/acl":{"get":{"operationId":"auth_get_auth_users_acl","summary":"Fetch user ACL","description":"Returns custom ACL overrides for a user, scoped to the requested tenant when supplied and to the actor or target user tenant otherwise.","tags":["Authentication & Accounts"],"parameters":[{"name":"userId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"User ACL entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchema"},"example":{"hasCustomAcl":true,"isSuperAdmin":true,"features":["string"],"organizations":null,"updatedAt":null}}}},"400":{"description":"Invalid user id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient privileges for the requested tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/users/acl?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_users_acl","summary":"Update user ACL","description":"Updates a per-user ACL override. Omitted super admin, feature, and organization fields preserve their stored values. Authorization evaluates the merged ACL, so a partial request returns 403 when a preserved grant is outside the actor's grantable ACL. An organization-scoped non-super-admin override requires at least one feature grant.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchema"},"example":{"userId":"00000000-0000-4000-8000-000000000000","organizations":null}}}},"responses":{"200":{"description":"User ACL updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"sanitized":true}}}},"400":{"description":"Invalid payload or unresolved tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient privileges to modify ACL","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/users/acl\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"organizations\\\": null\n}\""}],"x-require-auth":true}},"/auth/users/consents":{"get":{"operationId":"auth_get_auth_users_consents","summary":"List user consents","description":"Returns all consent records for a given user, with integrity verification status.","tags":["Auth"],"parameters":[{"name":"userId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Consent list returned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/users/consents?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/users/resend-invite":{"post":{"operationId":"auth_post_auth_users_resend_invite","summary":"Resend invitation email","description":"Resends the invitation email to a user who has not yet set up their password. Generates a new 48-hour setup token and invalidates prior tokens.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Invite email sent","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request origin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"User not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"User already has a password","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"429":{"description":"Rate limit exceeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Invitation email origin is not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/users/resend-invite\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/auth/users":{"get":{"operationId":"auth_get_auth_users","summary":"List users","description":"Returns users for the effective selected tenant and organization scope. Search matches email, organization name, and role name. Super administrators may scope the response via the topbar context, organization filters, or role filters. Pass scopeToActiveOrganization=1 to restrict results to the caller's active organization (used by recipient/assignee pickers so suggestions stay within the org that owns the resulting record). Pass ids=<uuid>,<uuid> (max 100) to resolve a known set of users in one request, for example to label a list of foreign keys; it intersects with id and roleId, and a supplied ids value that contains no valid identifier matches nothing.","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters1Schema"},"example":"string","description":"Comma-separated user identifiers, at most 100"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters3Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters4Schema"},"example":"string"},{"name":"name","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters5Schema"},"example":"string"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"scopeToActiveOrganization","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters7Schema"},"example":true},{"name":"roleIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters8Schema"},"example":["00000000-0000-4000-8000-000000000000"]}],"responses":{"200":{"description":"User collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","email":"user@example.com","name":null,"organizationId":null,"organizationName":null,"tenantId":null,"tenantName":null,"roles":["string"],"isConfirmed":true,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/users?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"auth_post_auth_users","summary":"Create user","description":"Creates a new confirmed user within the specified organization, optional display name, and optional roles.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchema"},"example":{"email":"user@example.com","name":null,"organizationId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"201":{"description":"User created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload or duplicate email","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Attempted to assign privileged roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/users\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"email\\\": \\\"user@example.com\\\",\n  \\\"name\\\": null,\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_users","summary":"Update user","description":"Updates profile fields including display name, organization assignment, credentials, or role memberships. A destination organization must be within the caller's descendant-expanded organization scope. Retained and newly assigned roles must belong to the destination tenant and be grantable by the caller. Setting isConfirmed=false deactivates the account: the user can no longer sign in and every active session is revoked; isConfirmed=true reactivates it. A tenant cannot drop below a protected role's minimum active holder count, so revoking the role from, deactivating, moving, or deleting the last active administrator is rejected.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","name":null}}}},"responses":{"200":{"description":"User updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload, duplicate email, or the update would remove the last active holder of a protected role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Destination organization is outside caller scope, or a retained or assigned role is not grantable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"User or destination organization not found in the caller tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/users\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_users","summary":"Delete user","description":"Deletes a user by identifier. Rejected when the target is the last active holder of a protected role in the tenant. Undo support is provided via the command bus.","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"User identifier"}],"responses":{"200":{"description":"User deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"User cannot be deleted, or is the last active holder of a protected role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"User not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/auth/users?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/sidebar/variants/{id}":{"get":{"operationId":"auth_get_auth_sidebar_variants_id","summary":"Get a sidebar variant","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Variant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","variant":{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true,"settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"createdAt":"string","updatedAt":null}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Variant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/sidebar/variants/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"auth_put_auth_sidebar_variants_id","summary":"Update a sidebar variant","description":"Updates the variant's name, settings, and/or isActive flag. Setting `isActive: true` deactivates other variants in the same scope (only one active per user/tenant/locale).","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Variant updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchema"},"example":{"locale":"string","variant":{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true,"settings":{"version":1,"groupOrder":["string"],"groupLabels":{"key":"string"},"itemLabels":{"key":"string"},"hiddenItems":["string"],"itemOrder":{"key":["string"]}},"createdAt":"string","updatedAt":null}}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Variant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/auth/sidebar/variants/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_sidebar_variants_id","summary":"Delete a sidebar variant","description":"Soft-deletes the variant (sets deleted_at).","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Variant deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Variant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/auth/sidebar/variants/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/admin/nav":{"get":{"operationId":"auth_get_auth_admin_nav","summary":"Resolve backend chrome bootstrap payload","description":"Returns the backend chrome payload available to the authenticated administrator after applying scope, RBAC, role defaults, and personal sidebar preferences.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Backend chrome payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchema"},"example":{"brand":null,"groups":[{"name":"string","items":[{"href":"string","title":"string"}]}],"settingsSections":[{"id":"string","label":"string","items":[{"id":"string","label":"string","href":"string"}]}],"settingsPathPrefixes":["string"],"profileSections":[{"id":"string","label":"string","items":[{"id":"string","label":"string","href":"string"}]}],"profilePathPrefixes":["string"],"grantedFeatures":["string"],"roles":["string"],"currentOrganization":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/admin/nav\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/autologin":{"get":{"operationId":"auth_get_auth_autologin","summary":"Auto sign-in using env-configured demo credentials","description":"When OM_AUTOLOGIN_EMAIL / OM_AUTOLOGIN_PASSWORD are configured, signs the visitor in with those credentials and redirects into the app. Intended for single-tenant demo instances only. Falls back to the login page when disabled or misconfigured.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthAutologinGetResponses200ContentApplicationJsonSchema"}}}},"307":{"description":"Redirect into the app (or to /login on failure)","content":{"text/html":{"schema":{"$ref":"#/components/schemas/DocPathsAuthAutologinGetResponses307ContentTextHtmlSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/autologin\" \\\n  -H \"Accept: application/json\""}]}},"/auth/feature-check":{"post":{"operationId":"auth_post_auth_feature_check","summary":"Check feature grants for the current user","description":"Evaluates which of the requested features are available to the signed-in user within the active tenant / organization context.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchema"},"example":{"features":["string"]}}},"description":"Feature identifiers to evaluate."},"responses":{"200":{"description":"Evaluation result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"granted":["string"],"userId":"string"}}}},"400":{"description":"Invalid request — features array missing, too large, or contains invalid entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/feature-check\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"features\\\": [\n    \\\"string\\\"\n  ]\n}\""}],"x-require-auth":true}},"/auth/features":{"get":{"operationId":"auth_get_auth_features","summary":"List declared feature flags","description":"Returns all static features contributed by the enabled modules along with their module source.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Aggregated feature catalog","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","title":"string","module":"string"}],"modules":[{"id":"string","title":"string"}]}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/features\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/login":{"post":{"operationId":"auth_post_auth_login","summary":"Authenticate user credentials","description":"Validates the submitted credentials and issues a bearer token cookie for subsequent API calls.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchema"},"example":{"email":"user@example.com","password":"string"}}},"description":"Form-encoded payload captured from the login form."},"responses":{"200":{"description":"Authentication succeeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"token":"string","redirect":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses400ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"401":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses401ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"403":{"description":"User lacks required role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses403ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"429":{"description":"Too many login attempts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/login\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/x-www-form-urlencoded\" \\\n  -d \"email=user%40example.com&password=string\""}]}},"/auth/logout":{"post":{"operationId":"auth_post_auth_logout","summary":"Invalidate session and redirect","description":"Clears authentication cookies and redirects the browser to the login page.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLogoutPostResponses201ContentApplicationJsonSchema"}}}},"302":{"description":"Redirect to login after successful logout","content":{"text/html":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLogoutPostResponses302ContentTextHtmlSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthLogoutPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/logout\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/auth/reset/confirm":{"post":{"operationId":"auth_post_auth_reset_confirm","summary":"Complete password reset","description":"Validates the reset token and updates the user password.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchema"},"example":{"token":"string","password":"string"}}}},"responses":{"200":{"description":"Password reset succeeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"redirect":"string"}}}},"400":{"description":"Invalid token or payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"429":{"description":"Too many reset confirmation attempts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/reset/confirm\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/x-www-form-urlencoded\" \\\n  -d \"token=string&password=string\""}]}},"/auth/reset/validate":{"post":{"operationId":"auth_post_auth_reset_validate","summary":"Check whether a password reset token is still usable","description":"Reports whether a reset token exists, is unused, and has not expired, so the reset page can render a terminal state instead of a form the token can never submit. The token is never consumed and the response never distinguishes unknown, used, and expired tokens.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostRequestBodyContentApplicationXWwwFormUrlencodedSchema"},"example":{"token":"string"}}}},"responses":{"200":{"description":"Token state resolved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"valid":true}}}},"429":{"description":"Too many token validation attempts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/reset/validate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/x-www-form-urlencoded\" \\\n  -d \"token=string\""}]}},"/auth/reset":{"post":{"operationId":"auth_post_auth_reset","summary":"Send reset email","description":"Requests a password reset email for the given account. The endpoint always returns `ok: true` to avoid leaking account existence.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetPostRequestBodyContentApplicationXWwwFormUrlencodedSchema"},"example":{"email":"user@example.com"}}}},"responses":{"200":{"description":"Reset email dispatched (or ignored for unknown accounts)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request origin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"429":{"description":"Too many password reset requests","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Password reset email origin is not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/reset\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/x-www-form-urlencoded\" \\\n  -d \"email=user%40example.com\""}]}},"/auth/session/refresh":{"get":{"operationId":"auth_get_auth_session_refresh","summary":"Refresh auth cookie from session token (browser)","description":"Exchanges an existing `session_token` cookie for a fresh JWT auth cookie and redirects the browser.","tags":["Authentication & Accounts"],"parameters":[{"name":"redirect","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshGetParameters0Schema"},"example":"string","description":"Absolute or relative URL to redirect after refresh"}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshGetResponses200ContentApplicationJsonSchema"}}}},"302":{"description":"Redirect to target location when session is valid","content":{"text/html":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshGetResponses302ContentTextHtmlSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/auth/session/refresh\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"auth_post_auth_session_refresh","summary":"Refresh access token (API/mobile)","description":"Exchanges a refresh token for a new JWT access token. Pass the refresh token obtained from login in the request body.","tags":["Authentication & Accounts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostRequestBodyContentApplicationJsonSchema"},"example":{"refreshToken":"string"}}}},"responses":{"200":{"description":"New access token issued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"accessToken":"string","expiresIn":1}}}},"400":{"description":"Missing refresh token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"401":{"description":"Invalid or expired token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchema"},"example":{"ok":false,"error":"string"}}}},"429":{"description":"Too many refresh attempts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/auth/session/refresh\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"refreshToken\\\": \\\"string\\\"\n}\""}]}},"/directory/organization-branding":{"get":{"operationId":"directory_get_directory_organization_branding","summary":"Read sidebar branding for the selected organization","description":"Returns the logo URL used by the backend sidebar for the currently selected organization.","tags":["Directory"],"parameters":[],"responses":{"200":{"description":"Organization branding","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","organizationName":"string","tenantId":"00000000-0000-4000-8000-000000000000","logoUrl":null,"logoPreserveAspectRatio":true,"updatedAt":null}}}},"400":{"description":"A concrete organization scope is required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Organization not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/organization-branding\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"directory_put_directory_organization_branding","summary":"Update sidebar branding for the selected organization","description":"Stores an external image URL or an internal attachment image URL as the selected organization logo.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchema"},"example":{"logoUrl":null}}}},"responses":{"200":{"description":"Updated organization branding","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","organizationName":"string","tenantId":"00000000-0000-4000-8000-000000000000","logoUrl":null,"logoPreserveAspectRatio":true,"updatedAt":null}}}},"400":{"description":"Save failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Organization branding changed since it was loaded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Invalid logo URL","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/directory/organization-branding\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"logoUrl\\\": null\n}\""}],"x-require-auth":true}},"/directory/organization-switcher":{"get":{"operationId":"directory_get_directory_organization_switcher","summary":"Load organization switcher menu","description":"Returns the hierarchical menu of organizations the current user may switch to within the active tenant.","tags":["Directory"],"parameters":[],"responses":{"200":{"description":"Organization switcher payload.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","depth":1,"selectable":true,"children":[]}],"selectedId":null,"canManage":true,"canViewAllOrganizations":true,"tenantId":null,"tenants":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true}],"isSuperAdmin":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/organization-switcher\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/directory/organizations":{"get":{"operationId":"directory_get_directory_organizations","summary":"List organizations","description":"Returns organizations using options, tree, or paginated manage view depending on the `view` parameter.","tags":["Directory"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters2Schema"},"example":"string"},{"name":"view","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters3Schema"},"example":"options"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters4Schema"},"example":"string"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"includeInactive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters6Schema"},"example":"true"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetParameters7Schema"},"example":"all"}],"responses":{"200":{"description":"Organization data for the requested view.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","parentId":null,"parentName":null,"tenantId":null,"tenantName":null,"rootId":null,"treePath":null}]}}}},"400":{"description":"Invalid query or tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/organizations?page=1&pageSize=50&view=options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"directory_post_directory_organizations","summary":"Create organization","description":"Creates a new organization within a tenant and optionally assigns hierarchy relationships.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","slug":null,"logoUrl":null,"parentId":null}}},"description":"Organization attributes and optional hierarchy configuration."},"responses":{"201":{"description":"Organization created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.organizations.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/directory/organizations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"slug\\\": null,\n  \\\"logoUrl\\\": null,\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"directory_put_directory_organizations","summary":"Update organization","description":"Updates organization details and hierarchy assignments.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","slug":null,"logoUrl":null,"parentId":null}}},"description":"Organization identifier followed by fields to update."},"responses":{"200":{"description":"Organization updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.organizations.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/directory/organizations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"slug\\\": null,\n  \\\"logoUrl\\\": null,\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"directory_delete_directory_organizations","summary":"Delete organization","description":"Soft deletes an organization identified by id.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier of the organization to delete."},"responses":{"200":{"description":"Organization deleted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.organizations.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/directory/organizations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/directory/tenants":{"get":{"operationId":"directory_get_directory_tenants","summary":"List tenants","description":"Returns tenants visible to the current user with optional search and pagination.","tags":["Directory"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters4Schema"},"example":"name"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters5Schema"},"example":"asc"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetParameters6Schema"},"example":"true"}],"responses":{"200":{"description":"Paged list of tenants.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","isActive":true,"createdAt":null,"updatedAt":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Requires super-admin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/tenants?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"directory_post_directory_tenants","summary":"Create tenant","description":"Creates a new tenant and returns its identifier.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string"}}},"description":"Tenant name and optional activation flag."},"responses":{"201":{"description":"Tenant created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.tenants.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/directory/tenants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"directory_put_directory_tenants","summary":"Update tenant","description":"Updates tenant properties such as name or activation state.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Tenant identifier with fields to update."},"responses":{"200":{"description":"Tenant updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.tenants.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/directory/tenants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"directory_delete_directory_tenants","summary":"Delete tenant","description":"Soft deletes the tenant identified by id.","tags":["Directory"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier of the tenant to remove."},"responses":{"200":{"description":"Tenant removed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing directory.tenants.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/directory/tenants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/directory/organizations/lookup":{"get":{"operationId":"directory_get_directory_organizations_lookup","summary":"Public organization lookup by slug","tags":["Directory (Tenants & Organizations)"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsLookupGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/organizations/lookup\" \\\n  -H \"Accept: application/json\""}]}},"/directory/tenants/lookup":{"get":{"operationId":"directory_get_directory_tenants_lookup","summary":"Public tenant lookup","tags":["Directory (Tenants & Organizations)"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsLookupGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/directory/tenants/lookup\" \\\n  -H \"Accept: application/json\""}]}},"/configs/cache":{"get":{"operationId":"configs_get_configs_cache","summary":"Get cache statistics","description":"Returns detailed cache statistics including total entries and breakdown by cache segments. Requires cache service to be available.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"Cache statistics","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchema"},"example":{"generatedAt":"string","totalKeys":1,"segments":[{"segment":"string","resource":null,"method":null,"path":null,"keyCount":1,"keys":["string"]}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to resolve cache stats","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Cache service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/configs/cache\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"configs_post_configs_cache","summary":"Purge cache","description":"Purges cache entries. Supports two actions: purgeAll (clears entire cache) or purgeSegment (clears specific segment). Returns updated cache statistics after purge.","tags":["Configs"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchema"},"example":{"action":"purgeAll"}}}},"responses":{"200":{"description":"Cache segment cleared successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchema"},"example":{"action":"purgeSegment","segment":"string","deleted":1,"stats":{"generatedAt":"string","totalKeys":1,"segments":[{"segment":"string","resource":null,"method":null,"path":null,"keyCount":1,"keys":["string"]}]}}}}},"400":{"description":"Invalid request - missing segment identifier for purgeSegment action","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to purge cache","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Cache service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/configs/cache\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"action\\\": \\\"purgeAll\\\"\n}\""}],"x-require-auth":true}},"/configs/module-telemetry":{"get":{"operationId":"configs_get_configs_module_telemetry","summary":"Get module resource usage telemetry","description":"Returns in-process module resource attribution for API routes, event subscribers, and queue workers.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"Module resource usage report","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchema"},"example":{"generatedAt":"string","startedAt":"string","enabled":true,"bucketIntervalMs":1,"totals":{"modules":1,"operations":1,"calls":1,"errors":1,"totalDurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1},"thresholds":{"p95DurationMs":1,"cpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1,"errors":1},"modules":[{"moduleId":"string","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1,"surfaces":[{"surface":"api","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1}],"topOperations":[{"moduleId":"string","surface":"api","operation":"string","resourceId":null,"calls":1,"errors":1,"totalDurationMs":1,"maxDurationMs":1,"p95DurationMs":1,"totalCpuUserMs":1,"totalCpuSystemMs":1,"maxCpuMs":1,"totalHeapDeltaBytes":1,"positiveHeapDeltaBytes":1,"maxHeapDeltaBytes":1,"totalRssDeltaBytes":1,"positiveRssDeltaBytes":1,"maxRssDeltaBytes":1,"firstSeenAt":"string","lastSeenAt":"string"}],"candidateReasons":["string"]}],"candidates":[{"moduleId":"string","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1,"surfaces":[{"surface":"api","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1}],"topOperations":[{"moduleId":"string","surface":"api","operation":"string","resourceId":null,"calls":1,"errors":1,"totalDurationMs":1,"maxDurationMs":1,"p95DurationMs":1,"totalCpuUserMs":1,"totalCpuSystemMs":1,"maxCpuMs":1,"totalHeapDeltaBytes":1,"positiveHeapDeltaBytes":1,"maxHeapDeltaBytes":1,"totalRssDeltaBytes":1,"positiveRssDeltaBytes":1,"maxRssDeltaBytes":1,"firstSeenAt":"string","lastSeenAt":"string"}],"candidateReasons":["string"]}],"buckets":[{"bucketStart":"string","bucketEnd":"string","bucketIntervalMs":1,"stage":"startup","partial":true,"totals":{"modules":1,"calls":1,"errors":1,"totalDurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1},"modules":[{"moduleId":"string","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1,"surfaces":[{"surface":"api","calls":1,"errors":1,"totalDurationMs":1,"p95DurationMs":1,"totalCpuMs":1,"positiveHeapDeltaBytes":1,"positiveRssDeltaBytes":1}],"topOperations":[{"moduleId":"string","surface":"api","operation":"string","resourceId":null,"calls":1,"errors":1,"totalDurationMs":1,"maxDurationMs":1,"p95DurationMs":1,"totalCpuUserMs":1,"totalCpuSystemMs":1,"maxCpuMs":1,"totalHeapDeltaBytes":1,"positiveHeapDeltaBytes":1,"maxHeapDeltaBytes":1,"totalRssDeltaBytes":1,"positiveRssDeltaBytes":1,"maxRssDeltaBytes":1,"firstSeenAt":"string","lastSeenAt":"string"}],"candidateReasons":["string"]}]}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/configs/module-telemetry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"configs_delete_configs_module_telemetry","summary":"Clear module telemetry data","description":"Development-only endpoint that clears in-memory module telemetry and local process telemetry files.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"Module telemetry cleared","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses200ContentApplicationJsonSchema"},"example":{"cleared":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden outside development mode","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/configs/module-telemetry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/configs/system-status":{"get":{"operationId":"configs_get_configs_system_status","summary":"Get system health status","description":"Returns comprehensive system health information including environment details, version, resource usage, and service connectivity status.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"System status snapshot","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchema"},"example":{"generatedAt":"string","runtimeMode":"development","categories":[{"key":"profiling","labelKey":"string","descriptionKey":null,"items":[{"key":"string","category":"profiling","kind":"boolean","labelKey":"string","descriptionKey":"string","docUrl":null,"defaultValue":null,"state":"enabled","value":null,"normalizedValue":null}]}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to load system status","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/configs/system-status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"configs_post_configs_system_status","summary":"Clear system cache","description":"Purges the entire cache for the current tenant. Useful for troubleshooting or forcing fresh data loading.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"Cache cleared successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses200ContentApplicationJsonSchema"},"example":{"cleared":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to purge cache","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Cache service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/configs/system-status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/configs/upgrade-actions":{"get":{"operationId":"configs_get_configs_upgrade_actions","summary":"List pending upgrade actions","description":"Returns a list of pending upgrade actions for the current version. These are one-time setup tasks that need to be executed after upgrading to a new version. Requires organization and tenant context.","tags":["Configs"],"parameters":[],"responses":{"200":{"description":"List of pending upgrade actions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchema"},"example":{"version":"string","actions":[{"id":"string","version":"string","message":"string","ctaLabel":"string","successMessage":"string","loadingLabel":"string"}]}}}},"400":{"description":"Missing organization or tenant context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to load upgrade actions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/configs/upgrade-actions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"configs_post_configs_upgrade_actions","summary":"Execute upgrade action","description":"Executes a specific upgrade action by ID. Typically used for one-time setup tasks like seeding example data after version upgrade. Returns execution status and localized success message.","tags":["Configs"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostRequestBodyContentApplicationJsonSchema"},"example":{"actionId":"string"}}}},"responses":{"200":{"description":"Upgrade action executed successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchema"},"example":{"status":"string","message":"string","version":"string"}}}},"400":{"description":"Invalid request body or missing context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Upgrade actions are disabled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to execute upgrade action","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/configs/upgrade-actions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"actionId\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/entities/definitions.batch":{"post":{"operationId":"entities_post_entities_definitions_batch","summary":"Save multiple custom field definitions","description":"Creates or updates multiple definitions for a single entity in one transaction.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","definitions":[{"key":"string","kind":"text"}]}}}},"responses":{"200":{"description":"Definitions saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"version":null}}}},"400":{"description":"Validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/definitions.batch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"definitions\\\": [\n    {\n      \\\"key\\\": \\\"string\\\",\n      \\\"kind\\\": \\\"text\\\"\n    }\n  ]\n}\""}],"x-require-auth":true}},"/entities/definitions.manage":{"get":{"operationId":"entities_get_entities_definitions_manage","summary":"Get management snapshot","description":"Returns scoped custom field definitions (including inactive tombstones) for administration interfaces.","tags":["Entities"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetParameters0Schema"},"example":"string"}],"responses":{"200":{"description":"Scoped definitions and deleted keys","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","key":"string","kind":"string","configJson":null,"organizationId":null,"tenantId":null}],"deletedKeys":["string"],"version":null}}}},"400":{"description":"Missing entity id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication or feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/definitions.manage?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/entities/definitions.restore":{"post":{"operationId":"entities_post_entities_definitions_restore","summary":"Restore definition","description":"Reactivates a previously soft-deleted definition within the current tenant/org scope.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","key":"string"}}}},"responses":{"200":{"description":"Definition restored","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing entity id or key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Definition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/definitions.restore\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"key\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/entities/definitions":{"get":{"operationId":"entities_get_entities_definitions","summary":"List active custom field definitions","description":"Returns active custom field definitions for the supplied entity ids, respecting tenant scope and tombstones.","tags":["Entities"],"parameters":[{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters0Schema"},"example":"string"},{"name":"entityIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters1Schema"},"example":"string"},{"name":"fieldset","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters2Schema"},"example":"string"}],"responses":{"200":{"description":"Definition list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"key":"string","kind":"string","label":"string","entityId":"string"}]}}}},"400":{"description":"Missing entity id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/definitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"entities_post_entities_definitions","summary":"Upsert custom field definition","description":"Creates or updates a custom field definition for the current tenant/org scope.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","key":"string","kind":"text"}}}},"responses":{"200":{"description":"Definition saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"item":{"id":"00000000-0000-4000-8000-000000000000","key":"string","kind":"string","configJson":{}}}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/definitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"key\\\": \\\"string\\\",\n  \\\"kind\\\": \\\"text\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"entities_delete_entities_definitions","summary":"Soft delete custom field definition","description":"Marks the specified definition inactive and tombstones it for the current scope.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","key":"string"}}}},"responses":{"200":{"description":"Definition deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"version":null}}}},"400":{"description":"Missing entity id or key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Definition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/entities/definitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"key\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/entities/encryption":{"get":{"operationId":"entities_get_entities_encryption","summary":"Fetch encryption map","description":"Returns the encrypted field map for the current tenant/organization scope.","tags":["Entities"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetParameters0Schema"},"example":"string"}],"responses":{"200":{"description":"Map","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchema"},"example":{"entityId":"string","fields":[{"field":"string","hashField":null}],"updatedAt":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/encryption?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"entities_post_entities_encryption","summary":"Upsert encryption map","description":"Creates or updates the encryption map for the current tenant/organization scope. Enforces optimistic locking when the caller sends the expected version header.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","tenantId":null,"organizationId":null,"fields":[{"field":"string","hashField":null}]}}}},"responses":{"200":{"description":"Saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"updatedAt":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Optimistic-lock conflict (stale write)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","code":"string","currentUpdatedAt":"string","expectedUpdatedAt":"string"}}}},"422":{"description":"Selected organization is unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string","code":"organization_selection_invalid"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/encryption\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"tenantId\\\": null,\n  \\\"organizationId\\\": null,\n  \\\"fields\\\": [\n    {\n      \\\"field\\\": \\\"string\\\",\n      \\\"hashField\\\": null\n    }\n  ]\n}\""}],"x-require-auth":true}},"/entities/entities":{"get":{"operationId":"entities_get_entities_entities","summary":"List available entities","description":"Returns generated and custom entities scoped to the caller with field counts per entity.","tags":["Entities"],"parameters":[],"responses":{"200":{"description":"List of entities","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"entityId":"string","source":"code","label":"string","count":1}]}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/entities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"entities_post_entities_entities","summary":"Upsert custom entity","description":"Creates or updates a tenant/org scoped custom entity definition.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","label":"string","description":null,"showInSidebar":false,"accessRestricted":false}}}},"responses":{"200":{"description":"Entity saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"item":{"id":"00000000-0000-4000-8000-000000000000","entityId":"string","label":"string"}}}}},"400":{"description":"Validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/entities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"label\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"showInSidebar\\\": false,\n  \\\"accessRestricted\\\": false\n}\""}],"x-require-auth":true},"delete":{"operationId":"entities_delete_entities_entities","summary":"Soft delete custom entity","description":"Marks the specified custom entity inactive within the current scope.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string"}}}},"responses":{"200":{"description":"Entity deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing entity id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Entity not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/entities/entities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/entities/entity-settings":{"get":{"operationId":"entities_get_entities_entity_settings","summary":"Get custom entity settings","description":"Returns the tenant-scoped default-restricted policy for new custom entities.","tags":["Entities"],"parameters":[],"responses":{"200":{"description":"Current settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchema"},"example":{"newEntitiesRestrictedByDefault":true,"updatedAt":null}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/entity-settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"entities_put_entities_entity_settings","summary":"Update custom entity settings","description":"Sets the tenant-scoped default-restricted policy for new custom entities.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchema"},"example":{"newEntitiesRestrictedByDefault":true}}}},"responses":{"200":{"description":"Updated settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"newEntitiesRestrictedByDefault":true,"updatedAt":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Optimistic lock conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchema"},"example":{"code":"string","error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/entities/entity-settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"newEntitiesRestrictedByDefault\\\": true\n}\""}],"x-require-auth":true}},"/entities/records":{"get":{"operationId":"entities_get_entities_records","summary":"List records","description":"Returns paginated records for the supplied entity. Supports custom field filters, exports, and soft-delete toggles.","tags":["Entities"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters0Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters2Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters4Schema"},"example":"asc"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters5Schema"},"example":"string"},{"name":"searchFields","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters6Schema"},"example":"string"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters7Schema"},"example":true},{"name":"format","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters8Schema"},"example":"csv"},{"name":"exportScope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters9Schema"},"example":"full"},{"name":"export_scope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters10Schema"},"example":"full"},{"name":"all","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters11Schema"},"example":true},{"name":"full","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters12Schema"},"example":true}],"responses":{"200":{"description":"Paginated records","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"400":{"description":"Missing entity id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/records?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"entities_post_entities_records","summary":"Create record","description":"Creates a record for the given entity. When `recordId` is omitted or not a UUID the data engine will generate one automatically.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","values":{}}}}},"responses":{"200":{"description":"Record created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/entities/records\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"values\\\": {}\n}\""}],"x-require-auth":true},"put":{"operationId":"entities_put_entities_records","summary":"Update record","description":"Updates an existing record. If the provided recordId is not a UUID the record will be created instead to support optimistic flows.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","recordId":"string","values":{}}}}},"responses":{"200":{"description":"Record updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/entities/records\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"recordId\\\": \\\"string\\\",\n  \\\"values\\\": {}\n}\""}],"x-require-auth":true},"delete":{"operationId":"entities_delete_entities_records","summary":"Delete record","description":"Soft deletes the specified record within the current tenant/org scope.","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","recordId":"string"}}}},"responses":{"200":{"description":"Record deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing entity id or record id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Record not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/entities/records\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"recordId\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/entities/relations/options":{"get":{"operationId":"entities_get_entities_relations_options","summary":"List relation options","description":"Returns up to 200 option entries for populating relation dropdowns, automatically resolving label fields when omitted. An entityId that matches neither an active custom entity nor a registered ORM entity yields an empty option list.","tags":["Entities"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetParameters0Schema"},"example":"string"},{"name":"labelField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetParameters1Schema"},"example":"string"},{"name":"q","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetParameters2Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetParameters3Schema"},"example":"string"},{"name":"routeContextFields","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetParameters4Schema"},"example":"string"}],"responses":{"200":{"description":"Option list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"value":"string","label":"string"}]}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/relations/options?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/entities/sidebar-entities":{"get":{"operationId":"entities_get_entities_sidebar_entities","summary":"Get sidebar entities","description":"Returns custom entities flagged with `showInSidebar` for the current tenant/org scope.","tags":["Entities"],"parameters":[],"responses":{"200":{"description":"Sidebar entities for navigation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"entityId":"string","label":"string","href":"string"}]}}}},"401":{"description":"Missing authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/entities/sidebar-entities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/query_index/purge":{"post":{"operationId":"query_index_post_query_index_purge","summary":"Purge query index records","description":"Queues a purge job to remove indexed records for an entity type within the active scope.","tags":["Query Index"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostRequestBodyContentApplicationJsonSchema"},"example":{"entityType":"string"}}},"description":"Entity identifier whose index entries should be removed."},"responses":{"200":{"description":"Purge job accepted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing entity type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/query_index/purge\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityType\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/query_index/reindex":{"post":{"operationId":"query_index_post_query_index_reindex","summary":"Trigger query index rebuild","description":"Queues a reindex job for the specified entity type within the current tenant scope.","tags":["Query Index"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchema"},"example":{"entityType":"string"}}},"description":"Entity identifier and optional force flag."},"responses":{"200":{"description":"Reindex job accepted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing entity type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/query_index/reindex\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityType\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/query_index/status":{"get":{"operationId":"query_index_get_query_index_status","summary":"Inspect query index coverage","description":"Returns entity counts comparing base tables with the query index along with the latest job status.","tags":["Query Index"],"parameters":[],"responses":{"200":{"description":"Current query index status.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"entityId":"string","label":"string","baseCount":null,"indexCount":null,"vectorCount":null,"fulltextCount":null,"ok":true,"job":{"status":"idle","startedAt":null,"finishedAt":null,"heartbeatAt":null,"processedCount":null,"totalCount":null,"scope":null},"refreshedAt":null}],"errors":[{"id":"string","source":"string","handler":"string","entityType":null,"recordId":null,"tenantId":null,"organizationId":null,"message":"string","stack":null,"payload":null,"occurredAt":"string"}],"logs":[{"id":"string","source":"string","handler":"string","level":"info","entityType":null,"recordId":null,"tenantId":null,"organizationId":null,"message":"string","details":null,"occurredAt":"string"}]}}}},"400":{"description":"Tenant or organization context required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/query_index/status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/version":{"get":{"operationId":"api_docs_get_version","summary":"Deployed Open Mercato version","tags":["API Documentation"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsVersionGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/version\" \\\n  -H \"Accept: application/json\""}]}},"/audit_logs/audit-logs/access":{"get":{"operationId":"audit_logs_get_audit_logs_audit_logs_access","summary":"Retrieve access logs","description":"Fetches paginated access audit logs scoped to the authenticated user. Tenant administrators can optionally expand the search to other actors or organizations.","tags":["Audit & Action Logs"],"parameters":[{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Limit results to a specific organization"},{"name":"actorUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Filter by actor user id (tenant administrators only)"},{"name":"resourceKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters2Schema"},"example":"string","description":"Restrict to a resource kind such as `order` or `product`"},{"name":"accessType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters3Schema"},"example":"string","description":"Access type filter, e.g. `read` or `export`"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters4Schema"},"example":"string","description":"Page number (default 1)"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters5Schema"},"example":"string","description":"Page size (default 50)"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters6Schema"},"example":"string","description":"Explicit maximum number of records when paginating manually"},{"name":"before","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters7Schema"},"example":"string","description":"Return logs created before this ISO-8601 timestamp"},{"name":"after","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetParameters8Schema"},"example":"string","description":"Return logs created after this ISO-8601 timestamp"}],"responses":{"200":{"description":"Access logs returned successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","resourceKind":"string","resourceId":"string","accessType":"string","actorUserId":null,"actorUserName":null,"tenantId":null,"tenantName":null,"organizationId":null,"organizationName":null,"fields":["string"],"context":null,"createdAt":"string"}],"canViewTenant":true,"page":1,"pageSize":1,"total":1,"totalPages":1}}}},"400":{"description":"Invalid filters supplied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Caller has no resolved tenant scope and is not a superadmin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/audit_logs/audit-logs/access\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/audit_logs/audit-logs/actions/export":{"get":{"operationId":"audit_logs_get_audit_logs_audit_logs_actions_export","summary":"Export action logs as CSV","description":"Returns a CSV attachment containing filtered action audit log entries. Tenant administrators can widen the scope to other actors or organizations.","tags":["Audit & Action Logs"],"parameters":[{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Limit results to a specific organization"},{"name":"actorUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters1Schema"},"example":"string","description":"Filter logs created by specific actor IDs (tenant administrators only). Accepts a single UUID or a comma-separated UUID list."},{"name":"resourceKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters2Schema"},"example":"string","description":"Filter by resource kind (e.g., \"order\", \"product\")"},{"name":"resourceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters3Schema"},"example":"string","description":"Filter by resource ID (UUID of the specific record)"},{"name":"actionType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters4Schema"},"example":"string","description":"Filter by action type (`create`, `edit`, `delete`, `assign`). Accepts a single value or a comma-separated list."},{"name":"fieldName","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters5Schema"},"example":"string","description":"Filter to entries where the given field changed. Accepts a single field name or a comma-separated list."},{"name":"includeRelated","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters6Schema"},"example":"true","description":"When `true`, also returns changes to child entities linked via parentResourceKind/parentResourceId"},{"name":"undoableOnly","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters7Schema"},"example":"true","description":"When `true`, only undoable actions are returned"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters8Schema"},"example":"string","description":"Maximum number of records to export (default 1000, capped at 1000)"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters9Schema"},"example":"createdAt","description":"Sort field: `createdAt`, `user`, `action`, `field`, or `source`."},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters10Schema"},"example":"asc","description":"Sort direction: `asc` or `desc`."},{"name":"before","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters11Schema"},"example":"string","description":"Return actions created before this ISO-8601 timestamp"},{"name":"after","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetParameters12Schema"},"example":"string","description":"Return actions created after this ISO-8601 timestamp"}],"responses":{"200":{"description":"CSV export generated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses200ContentApplicationJsonSchema"},"example":{"file":"csv"}}}},"400":{"description":"Invalid filter values","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Caller has no resolved tenant scope and is not a superadmin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/audit_logs/audit-logs/actions/export?includeRelated=false&undoableOnly=false\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/audit_logs/audit-logs/actions/redo":{"post":{"operationId":"audit_logs_post_audit_logs_audit_logs_actions_redo","summary":"Redo by action log id","description":"Redoes the latest undone command owned by the caller. Requires the action to still be eligible for redo within tenant and organization scope.","tags":["Audit & Action Logs"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostRequestBodyContentApplicationJsonSchema"},"example":{"logId":"string"}}}},"responses":{"200":{"description":"Redo executed successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"logId":null,"undoToken":null}}}},"400":{"description":"Log not eligible for redo","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Redo blocked by scope checks","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/audit_logs/audit-logs/actions/redo\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"logId\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/audit_logs/audit-logs/actions":{"get":{"operationId":"audit_logs_get_audit_logs_audit_logs_actions","summary":"Fetch action logs","description":"Returns recent action audit log entries. Tenant administrators can widen the scope to other actors or organizations, and callers can optionally restrict results to undoable actions.","tags":["Audit & Action Logs"],"parameters":[{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Limit results to a specific organization"},{"name":"actorUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters1Schema"},"example":"string","description":"Filter logs created by specific actor IDs (tenant administrators only). Accepts a single UUID or a comma-separated UUID list."},{"name":"resourceKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters2Schema"},"example":"string","description":"Filter by resource kind (e.g., \"order\", \"product\")"},{"name":"resourceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters3Schema"},"example":"string","description":"Filter by resource ID (UUID of the specific record)"},{"name":"actionType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters4Schema"},"example":"string","description":"Filter by action type (`create`, `edit`, `delete`, `assign`). Accepts a single value or a comma-separated list."},{"name":"fieldName","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters5Schema"},"example":"string","description":"Filter to entries where the given field changed. Accepts a single field name or a comma-separated list."},{"name":"includeRelated","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters6Schema"},"example":"true","description":"When `true`, also returns changes to child entities linked via parentResourceKind/parentResourceId"},{"name":"includeTotal","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters7Schema"},"example":"true","description":"When `true`, the response includes the filtered total count."},{"name":"undoableOnly","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters8Schema"},"example":"true","description":"When `true`, only undoable actions are returned"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters9Schema"},"example":"string","description":"Maximum number of records to return (default 50, max 1000)"},{"name":"offset","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters10Schema"},"example":"string","description":"Zero-based record offset for pagination (legacy — prefer page/pageSize)"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters11Schema"},"example":"string","description":"Page number (default 1)"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters12Schema"},"example":"string","description":"Page size (default 50, max 200)"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters13Schema"},"example":"createdAt","description":"Sort field: `createdAt`, `user`, `action`, `field`, or `source`."},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters14Schema"},"example":"asc","description":"Sort direction: `asc` or `desc`."},{"name":"before","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters15Schema"},"example":"string","description":"Return actions created before this ISO-8601 timestamp"},{"name":"after","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetParameters16Schema"},"example":"string","description":"Return actions created after this ISO-8601 timestamp"}],"responses":{"200":{"description":"Action logs retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","commandId":"string","actionLabel":null,"executionState":"done","actorUserId":null,"actorUserName":null,"tenantId":null,"tenantName":null,"organizationId":null,"organizationName":null,"resourceKind":null,"resourceId":null,"parentResourceKind":null,"parentResourceId":null,"undoToken":null,"createdAt":"string","updatedAt":"string","snapshotBefore":null,"snapshotAfter":null,"changes":null,"context":null}],"canViewTenant":true,"page":1,"pageSize":1,"total":1,"totalPages":1}}}},"400":{"description":"Invalid filter values","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Caller has no resolved tenant scope and is not a superadmin","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/audit_logs/audit-logs/actions?includeRelated=false&includeTotal=false&undoableOnly=false\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/audit_logs/audit-logs/actions/undo":{"post":{"operationId":"audit_logs_post_audit_logs_audit_logs_actions_undo","summary":"Undo action by token","description":"Replays the undo handler registered for a command. The provided undo token must match the latest undoable log entry accessible to the caller.","tags":["Audit & Action Logs"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostRequestBodyContentApplicationJsonSchema"},"example":{"undoToken":"string"}}}},"responses":{"200":{"description":"Undo applied successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"logId":"string"}}}},"400":{"description":"Invalid or unavailable undo token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Undo blocked by organization or tenant scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Undo deliberately blocked by a beforeUndo command interceptor. The interceptor chooses the status (any 4xx/5xx) and may replace the body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/audit_logs/audit-logs/actions/undo\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"undoToken\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/notifications/admin/preferences":{"get":{"operationId":"notifications_get_notifications_admin_preferences","summary":"GET /notifications/admin/preferences","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/admin/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"notifications_put_notifications_admin_preferences","summary":"PUT /notifications/admin/preferences","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/admin/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/batch":{"post":{"operationId":"notifications_post_notifications_batch","summary":"POST /notifications/batch","tags":["Notifications"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsBatchPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsBatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications/batch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/channels":{"get":{"operationId":"notifications_get_notifications_channels","summary":"GET /notifications/channels","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsChannelsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsChannelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsChannelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/feature":{"post":{"operationId":"notifications_post_notifications_feature","summary":"POST /notifications/feature","tags":["Notifications"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsFeaturePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsFeaturePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsFeaturePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications/feature\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/mark-all-read":{"put":{"operationId":"notifications_put_notifications_mark_all_read","summary":"PUT /notifications/mark-all-read","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsMarkAllReadPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/mark-all-read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/preferences":{"get":{"operationId":"notifications_get_notifications_preferences","summary":"GET /notifications/preferences","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"notifications_put_notifications_preferences","summary":"PUT /notifications/preferences","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/role":{"post":{"operationId":"notifications_post_notifications_role","summary":"POST /notifications/role","tags":["Notifications"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsRolePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsRolePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsRolePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications/role\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications":{"get":{"operationId":"notifications_get_notifications","summary":"List notifications","description":"Returns a paginated collection of notifications.","tags":["Notifications"],"parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters0Schema"},"example":"unread"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters1Schema"},"example":"string"},{"name":"severity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters2Schema"},"example":"info"},{"name":"sourceEntityType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters3Schema"},"example":"string"},{"name":"sourceEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"since","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters5Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters6Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters7Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated notifications","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","type":"string","title":"string","body":null,"titleKey":null,"bodyKey":null,"titleVariables":null,"bodyVariables":null,"icon":null,"severity":"string","status":"string","actions":[{"id":"string","label":"string"}],"sourceModule":null,"sourceEntityType":null,"sourceEntityId":null,"linkHref":null,"createdAt":"string","readAt":null,"actionTaken":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Request could not be resolved to a tenant scope (code: tenant_scope_required)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string","code":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications?page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"notifications_post_notifications","summary":"Create notification","description":"Creates a notification for a user.","tags":["Notifications"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchema"},"example":{"type":"string","severity":"info","recipientUserId":"00000000-0000-4000-8000-000000000000"}}},"description":"Creates a notification for a user."},"responses":{"201":{"description":"Notification created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"type\\\": \\\"string\\\",\n  \\\"severity\\\": \\\"info\\\",\n  \\\"recipientUserId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/notifications/settings":{"get":{"operationId":"notifications_get_notifications_settings","summary":"GET /notifications/settings","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"notifications_post_notifications_settings","summary":"POST /notifications/settings","tags":["Notifications"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/types":{"get":{"operationId":"notifications_get_notifications_types","summary":"GET /notifications/types","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"notifications_patch_notifications_types","summary":"PATCH /notifications/types","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesPatchResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/notifications/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/unread-count":{"get":{"operationId":"notifications_get_notifications_unread_count","summary":"GET /notifications/unread-count","tags":["Notifications"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsUnreadCountGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/notifications/unread-count\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/{id}/action":{"post":{"operationId":"notifications_post_notifications_id_action","summary":"POST /notifications/{id}/action","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdActionPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdActionPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/notifications/:id/action\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/{id}/dismiss":{"put":{"operationId":"notifications_put_notifications_id_dismiss","summary":"PUT /notifications/{id}/dismiss","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdDismissPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdDismissPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/:id/dismiss\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/{id}/read":{"put":{"operationId":"notifications_put_notifications_id_read","summary":"PUT /notifications/{id}/read","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdReadPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdReadPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/:id/read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/{id}/restore":{"put":{"operationId":"notifications_put_notifications_id_restore","summary":"PUT /notifications/{id}/restore","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdRestorePutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdRestorePutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsIdRestorePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/:id/restore\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/notifications/types/{id}/channels/{channel}":{"put":{"operationId":"notifications_put_notifications_types_id_channels_channel","summary":"PUT /notifications/types/{id}/channels/{channel}","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutParameters0Schema"}},{"name":"channel","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutParameters1Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/notifications/types/:id/channels/:channel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"notifications_delete_notifications_types_id_channels_channel","summary":"DELETE /notifications/types/{id}/channels/{channel}","tags":["Notifications"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteParameters0Schema"}},{"name":"channel","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteParameters1Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/notifications/types/:id/channels/:channel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/dashboards/layout":{"get":{"operationId":"dashboards_get_dashboards_layout","summary":"Load the current dashboard layout","description":"Returns the saved widget layout together with the widgets the current user is allowed to place.","tags":["Dashboards"],"parameters":[],"responses":{"200":{"description":"Current dashboard layout and available widgets.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchema"},"example":{"layout":{"items":[{"id":"00000000-0000-4000-8000-000000000000","widgetId":"string","order":1}]},"allowedWidgetIds":["string"],"canConfigure":true,"context":{"userId":"00000000-0000-4000-8000-000000000000","tenantId":null,"organizationId":null,"userName":null,"userEmail":null,"userLabel":"string"},"widgets":[{"id":"string","title":"string","description":null,"defaultSize":"sm","defaultEnabled":true,"defaultSettings":null,"features":["string"],"moduleId":"string","icon":null,"loaderKey":"string","supportsRefresh":true}]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dashboards/layout\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"dashboards_put_dashboards_layout","summary":"Persist dashboard layout changes","description":"Saves the provided widget ordering, sizes, and settings for the current user.","tags":["Dashboards"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","widgetId":"string","order":1}]}}},"description":"List of dashboard widgets with ordering, sizing, and settings."},"responses":{"200":{"description":"Layout updated successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid layout payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing dashboards.configure feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Widget registry unavailable — the layout was not saved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/dashboards/layout\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"items\\\": [\n    {\n      \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"widgetId\\\": \\\"string\\\",\n      \\\"order\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true}},"/dashboards/roles/widgets":{"get":{"operationId":"dashboards_get_dashboards_roles_widgets","summary":"Fetch widget assignments for a role","description":"Returns the widgets explicitly assigned to the given role together with the evaluation scope.","tags":["Dashboards"],"parameters":[{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Current widget configuration for the role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchema"},"example":{"widgetIds":["string"],"hasCustom":true,"scope":{"tenantId":null,"organizationId":null}}}}},"400":{"description":"Missing role identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient permissions to manage role widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dashboards/roles/widgets?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"dashboards_put_dashboards_roles_widgets","summary":"Update widgets assigned to a role","description":"Persists the widget list for a role within the provided tenant and organization scope.","tags":["Dashboards"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchema"},"example":{"roleId":"00000000-0000-4000-8000-000000000000","widgetIds":["string"]}}},"description":"Role identifier and the widget ids that should remain assigned. Scope is derived from the authenticated session."},"responses":{"200":{"description":"Widgets updated successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"widgetIds":["string"]}}}},"400":{"description":"Invalid payload or unknown widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient permissions to manage role widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/dashboards/roles/widgets\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"roleId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"widgetIds\\\": [\n    \\\"string\\\"\n  ]\n}\""}],"x-require-auth":true}},"/dashboards/users/widgets":{"get":{"operationId":"dashboards_get_dashboards_users_widgets","summary":"Read widget overrides for a user","description":"Returns the widgets inherited and explicitly configured for the requested user within the current scope.","tags":["Dashboards"],"parameters":[{"name":"userId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Widget settings for the user.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchema"},"example":{"mode":"inherit","widgetIds":["string"],"hasCustom":true,"effectiveWidgetIds":["string"],"scope":{"tenantId":null,"organizationId":null}}}}},"400":{"description":"Missing user identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient permissions to manage user widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dashboards/users/widgets?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"dashboards_put_dashboards_users_widgets","summary":"Update user-specific dashboard widgets","description":"Sets the widget override mode and allowed widgets for a user. Passing `mode: inherit` clears overrides.","tags":["Dashboards"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchema"},"example":{"userId":"00000000-0000-4000-8000-000000000000","mode":"inherit","widgetIds":["string"]}}},"description":"User identifier, override mode, and widget ids. Scope is derived from the authenticated session."},"responses":{"200":{"description":"Overrides saved.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"mode":"inherit","widgetIds":["string"]}}}},"400":{"description":"Invalid payload or unknown widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient permissions to manage user widgets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/dashboards/users/widgets\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"mode\\\": \\\"inherit\\\",\n  \\\"widgetIds\\\": [\n    \\\"string\\\"\n  ]\n}\""}],"x-require-auth":true}},"/dashboards/widgets/data/batch":{"post":{"operationId":"dashboards_post_dashboards_widgets_data_batch","summary":"Fetch aggregated data for multiple dashboard widgets in one request","description":"Resolves a batch of widget data requests with a single authentication, RBAC, organization-scope, and database-context setup. Each request is keyed by an opaque widget id and resolved independently, so a failure in one widget does not fail the batch.","tags":["Dashboards"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchema"},"example":{"requests":[{"id":"string","request":{"entityType":"string","metric":{"field":"string","aggregate":"count"}}}]}}},"description":"A list of id-keyed widget data requests to resolve together."},"responses":{"200":{"description":"Per-widget aggregation results keyed by request id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchema"},"example":{"results":[{"id":"string","ok":true,"data":{"value":null,"data":[{"value":null}],"metadata":{"fetchedAt":"string","recordCount":1,"currency":null}}}]}}}},"400":{"description":"Invalid request payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dashboards/widgets/data/batch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"requests\\\": [\n    {\n      \\\"id\\\": \\\"string\\\",\n      \\\"request\\\": {\n        \\\"entityType\\\": \\\"string\\\",\n        \\\"metric\\\": {\n          \\\"field\\\": \\\"string\\\",\n          \\\"aggregate\\\": \\\"count\\\"\n        }\n      }\n    }\n  ]\n}\""}],"x-require-auth":true}},"/dashboards/widgets/data":{"post":{"operationId":"dashboards_post_dashboards_widgets_data","summary":"Fetch aggregated data for dashboard widgets","description":"Executes an aggregation query against the specified entity type and returns the result. Supports date range filtering, grouping, and period-over-period comparison.","tags":["Dashboards"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchema"},"example":{"entityType":"string","metric":{"field":"string","aggregate":"count"}}}},"description":"Widget data request configuration specifying entity type, metric, filters, and grouping."},"responses":{"200":{"description":"Aggregated data for the widget.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchema"},"example":{"value":null,"data":[{"value":null}],"metadata":{"fetchedAt":"string","recordCount":1,"currency":null}}}}},"400":{"description":"Invalid request payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing analytics.view feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Too many rows to group an encrypted field in application code","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Encryption is configured but the group source cannot currently be resolved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dashboards/widgets/data\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityType\\\": \\\"string\\\",\n  \\\"metric\\\": {\n    \\\"field\\\": \\\"string\\\",\n    \\\"aggregate\\\": \\\"count\\\"\n  }\n}\""}],"x-require-auth":true}},"/dashboards/layout/{itemId}":{"patch":{"operationId":"dashboards_patch_dashboards_layout_itemId","summary":"Update a dashboard layout item","description":"Adjusts the size or settings for a single widget within the dashboard layout.","tags":["Dashboards"],"parameters":[{"name":"itemId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Payload containing the new size or settings for the widget."},"responses":{"200":{"description":"Layout item updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload or missing item id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing dashboards.configure feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Item not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/dashboards/layout/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/dashboards/widgets/catalog":{"get":{"operationId":"dashboards_get_dashboards_widgets_catalog","summary":"List available dashboard widgets","description":"Returns the catalog of widgets that modules expose, including defaults and feature requirements.","tags":["Dashboards"],"parameters":[],"responses":{"200":{"description":"Widgets available for assignment.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","title":"string","description":null,"defaultSize":"sm","defaultEnabled":true,"defaultSettings":null,"features":["string"],"moduleId":"string","icon":null,"loaderKey":"string","supportsRefresh":true}]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient permissions to view widget catalog","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dashboards/widgets/catalog\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/events":{"get":{"operationId":"events_get_events","summary":"List declared events","description":"Returns every declared event, including its declared payloadSchema when the module (or the generated CRUD default) provides one. Filters: category, module, excludeTriggerExcluded (default true).","tags":["Events"],"parameters":[],"responses":{"200":{"description":"Declared events","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchema"},"example":{"data":[{"id":"string","label":"string"}],"total":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/events\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/events/stream":{"get":{"operationId":"events_get_events_stream","summary":"GET /events/stream","tags":["Events"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/events/stream\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/embeddings/reindex/cancel":{"post":{"operationId":"search_post_search_embeddings_reindex_cancel","summary":"Cancel vector reindex","description":"Cancels an in-progress vector reindex operation.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Cancel result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"jobsRemoved":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/embeddings/reindex/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/embeddings/reindex":{"post":{"operationId":"search_post_search_embeddings_reindex","summary":"Trigger vector reindex","description":"Starts a vector embedding reindex operation.","tags":["Search"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Reindex result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Reindex already in progress","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","lock":{"type":"fulltext","action":"string","startedAt":"string","elapsedMinutes":1,"processedCount":null,"totalCount":null}}}}},"500":{"description":"Reindex failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Search indexer unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/embeddings/reindex\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/search/embeddings":{"get":{"operationId":"search_get_search_embeddings","summary":"Get embeddings configuration","description":"Returns current embedding provider and model configuration.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Embeddings settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchema"},"example":{"settings":{"openaiConfigured":true,"autoIndexingEnabled":true,"autoIndexingLocked":true,"lockReason":null,"embeddingConfig":null,"configuredProviders":["openai"],"indexedDimension":null,"reindexRequired":true,"documentCount":null}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/embeddings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"search_post_search_embeddings","summary":"Update embeddings configuration","description":"Updates the embedding provider and model settings.","tags":["Search"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Updated settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchema"},"example":{"settings":{"openaiConfigured":true,"autoIndexingEnabled":true,"autoIndexingLocked":true,"lockReason":null,"embeddingConfig":null,"configuredProviders":["openai"],"indexedDimension":null,"reindexRequired":true,"documentCount":null}}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Auto-indexing disabled via environment","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Update failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Configuration service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/embeddings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/search/index":{"get":{"operationId":"search_get_search_index","summary":"List vector index entries","description":"Returns paginated list of entries in the vector search index.","tags":["Search"],"parameters":[{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetParameters0Schema"},"example":"string","description":"Filter by entity ID (e.g., \"customers:customer_person_profile\", \"catalog:catalog_product\")"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetParameters1Schema"},"example":1,"description":"Maximum entries to return (default: 50, max: 200)"},{"name":"offset","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetParameters2Schema"},"example":1,"description":"Offset for pagination (default: 0)"}],"responses":{"200":{"description":"Index entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchema"},"example":{"entries":[{"id":"string","entityId":"string","recordId":"string","tenantId":"string","organizationId":null}],"limit":1,"offset":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to fetch index","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Vector strategy unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/index\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"search_delete_search_index","summary":"Purge vector index","description":"Purges entries from the vector search index. Requires confirmAll=true when purging all entities.","tags":["Search"],"parameters":[{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteParameters0Schema"},"example":"string","description":"Specific entity ID to purge (e.g., \"customers:customer_person_profile\", \"catalog:catalog_product\")"},{"name":"confirmAll","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteParameters1Schema"},"example":"true","description":"Required when purging all entities"}],"responses":{"200":{"description":"Purge result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing confirmAll parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Purge failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Search indexer unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/search/index\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/reindex/cancel":{"post":{"operationId":"search_post_search_reindex_cancel","summary":"Cancel fulltext reindex","description":"Cancels an in-progress fulltext reindex operation.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Cancel result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"jobsRemoved":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/reindex/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/reindex":{"post":{"operationId":"search_post_search_reindex","summary":"Trigger fulltext reindex","description":"Starts a fulltext (Meilisearch) reindex operation. Can clear, recreate, or fully reindex.","tags":["Search"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Reindex result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"action":"clear","entityId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Reindex already in progress","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","lock":{"type":"fulltext","action":"string","startedAt":"string","elapsedMinutes":1,"processedCount":null,"totalCount":null}}}}},"500":{"description":"Reindex failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Search service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/reindex\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/search/search/global":{"get":{"operationId":"search_get_search_search_global","summary":"Global search (Cmd+K)","description":"Performs a global search using saved tenant strategies. Does NOT accept strategies from URL.","tags":["Search"],"parameters":[{"name":"q","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetParameters0Schema"},"example":"string","description":"Search query (required)"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetParameters1Schema"},"example":1,"description":"Maximum results to return (default: 50, max: 100)"},{"name":"entityTypes","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetParameters2Schema"},"example":"string","description":"Comma-separated entity types to filter results (e.g., \"customers:customer_person_profile,catalog:catalog_product,sales:sales_order\")"}],"responses":{"200":{"description":"Search results","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchema"},"example":{"results":[{"entityId":"string","recordId":"string","score":1,"source":"fulltext"}],"strategiesUsed":["fulltext"],"strategiesEnabled":["fulltext"],"timing":1,"query":"string","limit":1}}}},"400":{"description":"Missing query parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Search failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Search service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/search/global?q=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/search":{"get":{"operationId":"search_get_search_search","summary":"Search across all indexed entities","description":"Performs a search using configured strategies (fulltext, vector, tokens). Use for search playground. Results are limited to the entity types the caller holds the declared view features for; superadmins are exempt.","tags":["Search"],"parameters":[{"name":"q","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetParameters0Schema"},"example":"string","description":"Search query (required)"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetParameters1Schema"},"example":1,"description":"Maximum results to return (default: 50, max: 100)"},{"name":"strategies","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetParameters2Schema"},"example":"string","description":"Comma-separated strategies to use: fulltext, vector, tokens (e.g., \"fulltext,vector\")"},{"name":"entityTypes","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetParameters3Schema"},"example":"string","description":"Comma-separated entity types to filter results (e.g., \"customers:customer_person_profile,catalog:catalog_product,sales:sales_order\")"}],"responses":{"200":{"description":"Search results","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchema"},"example":{"results":[{"entityId":"string","recordId":"string","score":1,"source":"fulltext"}],"strategiesUsed":["fulltext"],"timing":1,"query":"string","limit":1}}}},"400":{"description":"Missing query parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Search failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"Search service unavailable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/search?q=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/settings/fulltext":{"get":{"operationId":"search_get_search_settings_fulltext","summary":"Get fulltext search configuration","description":"Returns Meilisearch configuration status and index statistics.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Fulltext settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchema"},"example":{"driver":null,"configured":true,"envVars":{"MEILISEARCH_HOST":{"set":true,"hint":"string"},"MEILISEARCH_API_KEY":{"set":true,"hint":"string"}},"optionalEnvVars":{"MEILISEARCH_INDEX_PREFIX":{"set":true,"hint":"string"},"SEARCH_EXCLUDE_ENCRYPTED_FIELDS":{"set":true,"hint":"string"}}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/settings/fulltext\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/settings/global-search":{"get":{"operationId":"search_get_search_settings_global_search","summary":"Get global search strategies","description":"Returns the enabled strategies for Cmd+K global search.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Global search settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchema"},"example":{"enabledStrategies":["fulltext"]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/settings/global-search\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"search_post_search_settings_global_search","summary":"Update global search strategies","description":"Sets which strategies are enabled for Cmd+K global search.","tags":["Search"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchema"},"example":{"enabledStrategies":["fulltext"]}}}},"responses":{"200":{"description":"Updated settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"enabledStrategies":["fulltext"]}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/search/settings/global-search\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"enabledStrategies\\\": [\n    \\\"fulltext\\\"\n  ]\n}\""}],"x-require-auth":true}},"/search/settings":{"get":{"operationId":"search_get_search_settings","summary":"Get search settings and status","description":"Returns search module configuration, available strategies, and reindex lock status.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Search settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"settings":{"strategies":[{"id":"string","name":"string","priority":1,"available":true}],"fulltextConfigured":true,"fulltextStats":null,"vectorConfigured":true,"tokensEnabled":true,"defaultStrategies":["string"],"reindexLock":null,"fulltextReindexLock":null,"vectorReindexLock":null}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/search/settings/vector-store":{"get":{"operationId":"search_get_search_settings_vector_store","summary":"Get vector store configuration","description":"Returns vector store configuration status.","tags":["Search"],"parameters":[],"responses":{"200":{"description":"Vector store settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchema"},"example":{"currentDriver":"pgvector","configured":true,"drivers":[{"id":"pgvector","name":"string","configured":true,"implemented":true,"available":null,"unavailableReason":null,"envVars":[{"name":"string","set":true,"hint":"string"}]}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/search/settings/vector-store\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/attachments/library":{"get":{"operationId":"attachments_get_attachments_library","summary":"List attachments","description":"Returns paginated list of attachments with optional filtering by search term, partition, and tags. Includes available tags and partitions.","tags":["Attachments"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters0Schema"},"example":1,"description":"Page number for pagination"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters1Schema"},"example":1,"description":"Number of items per page (max 100)"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters2Schema"},"example":"string","description":"Search by file name (case-insensitive)"},{"name":"partition","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters3Schema"},"example":"string","description":"Filter by partition code"},{"name":"tags","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters4Schema"},"example":"string","description":"Filter by tags (comma-separated)"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters5Schema"},"example":"fileName","description":"Field to sort by"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters6Schema"},"example":"asc","description":"Sort direction"}],"responses":{"200":{"description":"Attachments list with pagination and metadata","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","fileSize":1,"mimeType":"string","partitionCode":"string","partitionTitle":null,"url":null,"createdAt":"string","tags":["string"],"assignments":[],"content":null}],"total":1,"page":1,"pageSize":1,"totalPages":1,"availableTags":["string"],"partitions":[{"code":"string","title":"string","description":null,"isPublic":true}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments/library?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/attachments/partitions":{"get":{"operationId":"attachments_get_attachments_partitions","summary":"List all attachment partitions","description":"Returns all configured attachment partitions with storage settings, OCR configuration, and access control settings.","tags":["Attachments"],"parameters":[],"responses":{"200":{"description":"List of partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"attachments_post_attachments_partitions","summary":"Create new partition","description":"Creates a new attachment partition with specified storage and OCR settings. Requires unique partition code.","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","title":"string","description":null,"ocrModel":null,"storageDriver":"local","configJson":null}}}},"responses":{"201":{"description":"Partition created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}}}}},"400":{"description":"Invalid payload or partition code","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Partitions locked in demo mode","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Partition code already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"ocrModel\\\": null,\n  \\\"storageDriver\\\": \\\"local\\\",\n  \\\"configJson\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"attachments_put_attachments_partitions","summary":"Update partition","description":"Updates an existing partition. Partition code cannot be changed. Title, description, OCR settings, and access control can be modified.","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","title":"string","description":null,"ocrModel":null,"storageDriver":"local","configJson":null,"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Partition updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}}}}},"400":{"description":"Invalid payload or code change attempt","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Partitions locked in demo mode","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Partition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"ocrModel\\\": null,\n  \\\"storageDriver\\\": \\\"local\\\",\n  \\\"configJson\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments_partitions","summary":"Delete partition","description":"Deletes a partition. Default partitions cannot be deleted. Partitions with existing attachments cannot be deleted.","tags":["Attachments"],"parameters":[],"responses":{"200":{"description":"Partition deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid ID or default partition deletion attempt","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Partitions locked in demo mode","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Partition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Partition in use","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/attachments":{"get":{"operationId":"attachments_get_attachments","summary":"List attachments for a record","description":"Returns uploaded attachments for the given entity record, ordered by newest first.","tags":["Attachments"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters0Schema"},"example":"string","description":"Entity identifier that owns the attachments"},{"name":"recordId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters1Schema"},"example":"string","description":"Record identifier within the entity"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters3Schema"},"example":1}],"responses":{"200":{"description":"Attachments found for the record","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","url":"string","fileName":"string","fileSize":1,"createdAt":"string","mimeType":null,"content":null}]}}}},"400":{"description":"Missing entity or record identifiers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments?entityId=string&recordId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"attachments_post_attachments","summary":"Upload attachment","description":"Uploads a new attachment using multipart form-data and stores metadata for later retrieval.","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchema"},"example":{"entityId":"string","recordId":"string","file":"string"}}}},"responses":{"200":{"description":"Attachment stored successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"item":{"id":"string","url":"string","fileName":"string","fileSize":1,"content":null}}}}},"400":{"description":"Payload validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Attachment violates field constraints","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"recordId\\\": \\\"string\\\",\n  \\\"file\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments","summary":"Delete attachment","description":"Removes an uploaded attachment and deletes the stored asset.","tags":["Attachments"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Attachment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing attachment identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/attachments?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/attachments/transfer":{"post":{"operationId":"attachments_post_attachments_transfer","summary":"Transfer attachments to different record","description":"Transfers one or more attachments from one record to another within the same entity type. Updates attachment assignments and metadata to reflect the new record.","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","attachmentIds":["00000000-0000-4000-8000-000000000000"],"toRecordId":"string"}}}},"responses":{"200":{"description":"Attachments transferred successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"updated":1}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachments not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Attachment model missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/attachments/transfer\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"attachmentIds\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ],\n  \\\"toRecordId\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/attachments/file/{id}":{"get":{"operationId":"attachments_get_attachments_file_id","summary":"Download or serve attachment file","description":"Returns the raw file content for an attachment. Path parameter: {id} - Attachment UUID. Query parameter: ?download=1 - Force file download with Content-Disposition header. Access control is enforced based on partition settings.","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetParameters0Schema"}}],"responses":{"200":{"description":"File content with appropriate MIME type","content":{"application/json":{"schema":{}}}},"400":{"description":"Missing attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized - authentication required for private partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Attachment or file not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Partition misconfigured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments/file/:id\" \\\n  -H \"Accept: application/json\""}]}},"/attachments/image/{id}/{slug}":{"get":{"operationId":"attachments_get_attachments_image_id_slug","summary":"Serve image with optional resizing","description":"Returns an image attachment with optional on-the-fly resizing and cropping. Resized images are cached for performance. Only works with image MIME types. Path parameter: {id} - Attachment UUID. Query parameters: ?width=N (1-4000 pixels), ?height=N (1-4000 pixels), ?cropType=cover|contain (resize behavior).","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetParameters0Schema"}},{"name":"slug","in":"path","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetParameters1Schema"}}],"responses":{"200":{"description":"Binary image content (Content-Type: image/jpeg, image/png, etc.)","content":{"application/json":{"schema":{}}}},"400":{"description":"Invalid parameters, missing ID, or non-image attachment","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized - authentication required for private partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Image not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Partition misconfigured or image rendering failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments/image/:id/:slug\" \\\n  -H \"Accept: application/json\""}]}},"/attachments/library/{id}":{"get":{"operationId":"attachments_get_attachments_library_id","summary":"Get attachment details","description":"Returns complete details of an attachment including metadata, tags, assignments, and custom fields.","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetParameters0Schema"}}],"responses":{"200":{"description":"Attachment details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","fileSize":1,"mimeType":"string","partitionCode":"string","partitionTitle":null,"tags":["string"],"assignments":[],"content":null,"customFields":null}}}}},"400":{"description":"Invalid attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"attachments_patch_attachments_library_id","summary":"Update attachment metadata","description":"Updates attachment tags, assignments, and custom fields. Emits CRUD side effects for indexing and events.","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Attachment updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload or attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to save attributes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments_library_id","summary":"Delete attachment","description":"Permanently deletes an attachment file from storage and database. Emits CRUD side effects.","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Attachment deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/catalog/bulk-delete":{"post":{"operationId":"catalog_post_catalog_bulk_delete","summary":"Start bulk deleting catalog products","tags":["Product Catalog"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogBulkDeletePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogBulkDeletePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogBulkDeletePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/bulk-delete\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/catalog/categories":{"get":{"operationId":"catalog_get_catalog_categories","summary":"List categories","description":"Returns a paginated collection of categories scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"view","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters0Schema"},"example":"manage"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters3Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters4Schema"},"example":"all"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated categories","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","slug":null,"description":null,"parentId":null,"parentName":null,"depth":1,"treePath":"string","pathLabel":"string","childCount":1,"descendantCount":1,"isActive":true,"updatedAt":null,"organizationId":null,"tenantId":"00000000-0000-4000-8000-000000000000"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/categories?view=manage&page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_categories","summary":"Create category","description":"Creates a new product category.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","slug":null,"parentId":null}}},"description":"Creates a new product category."},"responses":{"201":{"description":"Category created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"slug\\\": null,\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_categories","summary":"Update category","description":"Updates an existing category by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","slug":null,"parentId":null}}},"description":"Updates an existing category by id."},"responses":{"200":{"description":"Category updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"slug\\\": null,\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_categories","summary":"Delete category","description":"Deletes a category by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a category by id."},"responses":{"200":{"description":"Category deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/offers":{"get":{"operationId":"catalog_get_catalog_offers","summary":"List offers","description":"Returns a paginated collection of offers scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters1Schema"},"example":1},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters4Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters6Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters7Schema"},"example":"string"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters8Schema"},"example":true},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters9Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters10Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetParameters11Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated offers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","productId":null,"organizationId":null,"tenantId":null,"channelId":null,"title":"string","description":null,"defaultMediaId":null,"defaultMediaUrl":null,"metadata":null,"isActive":null,"createdAt":null,"updatedAt":null,"product":null,"productChannelPrice":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/offers?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_offers","summary":"Create offer","description":"Creates a new offer linking a product to a sales channel.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","channelId":"00000000-0000-4000-8000-000000000000","title":"string","defaultMediaId":null,"defaultMediaUrl":null,"productId":"00000000-0000-4000-8000-000000000000"}}},"description":"Creates a new offer linking a product to a sales channel."},"responses":{"201":{"description":"Offer created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/offers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"channelId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null,\n  \\\"productId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_offers","summary":"Update offer","description":"Updates an existing offer by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","defaultMediaId":null,"defaultMediaUrl":null}}},"description":"Updates an existing offer by id."},"responses":{"200":{"description":"Offer updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/offers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_offers","summary":"Delete offer","description":"Deletes an offer by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an offer by id."},"responses":{"200":{"description":"Offer deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/offers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/option-schemas":{"get":{"operationId":"catalog_get_catalog_option_schemas","summary":"List option schemas","description":"Returns a paginated collection of option schemas scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters3Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters4Schema"},"example":"string"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters5Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated option schemas","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":null,"description":null,"schema":null,"metadata":null,"is_active":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/option-schemas?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_option_schemas","summary":"Create option schema","description":"Creates a new option schema template for product configurations.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","schema":{"options":[{"code":"string","label":"string","inputType":"select"}]}}}},"description":"Creates a new option schema template for product configurations."},"responses":{"201":{"description":"Option Schema created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/option-schemas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"schema\\\": {\n    \\\"options\\\": [\n      {\n        \\\"code\\\": \\\"string\\\",\n        \\\"label\\\": \\\"string\\\",\n        \\\"inputType\\\": \\\"select\\\"\n      }\n    ]\n  }\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_option_schemas","summary":"Update option schema","description":"Updates an existing option schema by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates an existing option schema by id."},"responses":{"200":{"description":"Option Schema updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/option-schemas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_option_schemas","summary":"Delete option schema","description":"Deletes an option schema by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an option schema by id."},"responses":{"200":{"description":"Option Schema deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/option-schemas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/price-kinds":{"get":{"operationId":"catalog_get_catalog_price_kinds","summary":"List price kinds","description":"Returns a paginated collection of price kinds scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters2Schema"},"example":"string"},{"name":"isPromotion","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters3Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters4Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated price kinds","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","organization_id":null,"tenant_id":null,"code":"string","title":"string","display_mode":null,"currency_code":null,"is_promotion":null,"is_active":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/price-kinds?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_price_kinds","summary":"Create price kind","description":"Creates a new price kind for categorizing product prices.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchema"},"example":{"tenantId":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","displayMode":"excluding-tax"}}},"description":"Creates a new price kind for categorizing product prices."},"responses":{"201":{"description":"Price Kind created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/price-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"displayMode\\\": \\\"excluding-tax\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_price_kinds","summary":"Update price kind","description":"Updates an existing price kind by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","displayMode":"excluding-tax"}}},"description":"Updates an existing price kind by id."},"responses":{"200":{"description":"Price Kind updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/price-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"displayMode\\\": \\\"excluding-tax\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_price_kinds","summary":"Delete price kind","description":"Deletes a price kind by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a price kind by id."},"responses":{"200":{"description":"Price Kind deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/price-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/prices":{"get":{"operationId":"catalog_get_catalog_prices","summary":"List prices","description":"Returns a paginated collection of prices scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters1Schema"},"example":1},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"variantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"offerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"currencyCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters6Schema"},"example":"string"},{"name":"priceKindId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters8Schema"},"example":"string"},{"name":"userId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters9Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"userGroupId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters10Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters11Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerGroupId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters12Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"quantity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters13Schema"},"example":1},{"name":"quantityUnit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters14Schema"},"example":"string"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters15Schema"},"example":true},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters16Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters17Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetParameters18Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated prices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","product_id":null,"variant_id":null,"offer_id":null,"currency_code":null,"price_kind_id":null,"kind":null,"min_quantity":null,"max_quantity":null,"unit_price_net":null,"unit_price_gross":null,"tax_rate":null,"tax_amount":null,"channel_id":null,"user_id":null,"user_group_id":null,"customer_id":null,"customer_group_id":null,"metadata":null,"starts_at":null,"ends_at":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/prices?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_prices","summary":"Create price","description":"Creates a new price entry for a product or variant.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","priceKindId":"00000000-0000-4000-8000-000000000000","taxRateId":null}}},"description":"Creates a new price entry for a product or variant."},"responses":{"201":{"description":"Price created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"priceKindId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"taxRateId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_prices","summary":"Update price","description":"Updates an existing price by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","taxRateId":null}}},"description":"Updates an existing price by id."},"responses":{"200":{"description":"Price updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"taxRateId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_prices","summary":"Delete price","description":"Deletes a price by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a price by id."},"responses":{"200":{"description":"Price deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/product-media":{"get":{"operationId":"catalog_get_catalog_product_media","summary":"List product media","description":"Returns a list of media attachments for a specific product.","tags":["Catalog"],"parameters":[{"name":"productId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"List of product media","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","url":"string","thumbnailUrl":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/product-media?productId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/catalog/product-unit-conversions":{"get":{"operationId":"catalog_get_catalog_product_unit_conversions","summary":"List product unit conversions","description":"Returns a paginated collection of product unit conversions scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"unitCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters4Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters5Schema"},"example":true},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated product unit conversions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","product_id":"00000000-0000-4000-8000-000000000000","unit_code":"string","to_base_factor":1,"sort_order":null,"is_active":null,"metadata":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/product-unit-conversions?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_product_unit_conversions","summary":"Create product unit conversion","description":"Creates a product unit conversion.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","productId":"00000000-0000-4000-8000-000000000000","unitCode":"string","toBaseFactor":1}}},"description":"Creates a product unit conversion."},"responses":{"201":{"description":"Product unit conversion created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/product-unit-conversions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"productId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"unitCode\\\": \\\"string\\\",\n  \\\"toBaseFactor\\\": 1\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_product_unit_conversions","summary":"Update product unit conversion","description":"Updates an existing product unit conversion by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates an existing product unit conversion by id."},"responses":{"200":{"description":"Product unit conversion updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/product-unit-conversions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_product_unit_conversions","summary":"Delete product unit conversion","description":"Deletes a product unit conversion by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a product unit conversion by id."},"responses":{"200":{"description":"Product unit conversion deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/product-unit-conversions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/products":{"get":{"operationId":"catalog_get_catalog_products","summary":"List products","description":"Returns a paginated collection of products scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters3Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters4Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters5Schema"},"example":"string"},{"name":"configurable","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters6Schema"},"example":"string"},{"name":"productType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters7Schema"},"example":"simple"},{"name":"channelIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters8Schema"},"example":"string"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters9Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"categoryIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters10Schema"},"example":"string"},{"name":"tagIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters11Schema"},"example":"string"},{"name":"offerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters12Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"userId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters13Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"userGroupId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters14Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters15Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerGroupId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters16Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"quantity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters17Schema"},"example":1},{"name":"quantityUnit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters18Schema"},"example":"string"},{"name":"priceDate","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters19Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters20Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters21Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters22Schema"},"example":true},{"name":"customFieldset","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters23Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetParameters24Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated products","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"subtitle":null,"description":null,"sku":null,"handle":null,"product_type":null,"status_entry_id":null,"primary_currency_code":null,"default_unit":null,"default_sales_unit":null,"default_sales_unit_quantity":null,"uom_rounding_scale":null,"uom_rounding_mode":null,"unit_price_enabled":null,"unit_price_reference_unit":null,"unit_price_base_quantity":null,"default_media_id":null,"default_media_url":null,"weight_value":null,"weight_unit":null,"dimensions":null,"is_configurable":null,"is_active":null,"country_of_origin_code":null,"pkwiu_code":null,"cn_code":null,"hs_code":null,"tax_classification_code":null,"gtu_codes":null,"age_min":null,"is_excise_good":null,"excise_category":null,"requires_prescription":null,"hazmat_class":null,"un_number":null,"hazmat_packing_group":null,"contains_lithium_battery":null,"launch_at":null,"end_of_life_at":null,"available_from":null,"available_until":null,"min_order_qty":null,"max_order_qty":null,"order_qty_increment":null,"requires_shipping":null,"is_quote_only":null,"seo_title":null,"seo_description":null,"canonical_url":null,"metadata":null,"custom_fieldset_code":null,"option_schema_id":null,"created_at":null,"updated_at":null,"pricing":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/products?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_products","summary":"Create product","description":"Creates a new product in the catalog.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","title":"string","sku":null,"taxRateId":null,"taxRate":null,"productType":"simple","defaultUnit":null,"defaultSalesUnit":null,"unitPriceReferenceUnit":null,"defaultMediaId":null,"defaultMediaUrl":null,"weightValue":null,"weightUnit":null,"dimensions":null,"optionSchemaId":null,"customFieldsetCode":null,"countryOfOriginCode":null,"pkwiuCode":null,"cnCode":null,"hsCode":null,"taxClassificationCode":null,"gtuCodes":null,"ageMin":null,"exciseCategory":null,"hazmatClass":null,"unNumber":null,"hazmatPackingGroup":null,"launchAt":null,"endOfLifeAt":null,"availableFrom":null,"availableUntil":null,"minOrderQty":null,"maxOrderQty":null,"orderQtyIncrement":null,"seoTitle":null,"seoDescription":null,"canonicalUrl":null}}},"description":"Creates a new product in the catalog."},"responses":{"201":{"description":"Product created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"sku\\\": null,\n  \\\"taxRateId\\\": null,\n  \\\"taxRate\\\": null,\n  \\\"productType\\\": \\\"simple\\\",\n  \\\"defaultUnit\\\": null,\n  \\\"defaultSalesUnit\\\": null,\n  \\\"unitPriceReferenceUnit\\\": null,\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null,\n  \\\"weightValue\\\": null,\n  \\\"weightUnit\\\": null,\n  \\\"dimensions\\\": null,\n  \\\"optionSchemaId\\\": null,\n  \\\"customFieldsetCode\\\": null,\n  \\\"countryOfOriginCode\\\": null,\n  \\\"pkwiuCode\\\": null,\n  \\\"cnCode\\\": null,\n  \\\"hsCode\\\": null,\n  \\\"taxClassificationCode\\\": null,\n  \\\"gtuCodes\\\": null,\n  \\\"ageMin\\\": null,\n  \\\"exciseCategory\\\": null,\n  \\\"hazmatClass\\\": null,\n  \\\"unNumber\\\": null,\n  \\\"hazmatPackingGroup\\\": null,\n  \\\"launchAt\\\": null,\n  \\\"endOfLifeAt\\\": null,\n  \\\"availableFrom\\\": null,\n  \\\"availableUntil\\\": null,\n  \\\"minOrderQty\\\": null,\n  \\\"maxOrderQty\\\": null,\n  \\\"orderQtyIncrement\\\": null,\n  \\\"seoTitle\\\": null,\n  \\\"seoDescription\\\": null,\n  \\\"canonicalUrl\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_products","summary":"Update product","description":"Updates an existing product by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","sku":null,"taxRateId":null,"taxRate":null,"defaultUnit":null,"defaultSalesUnit":null,"unitPriceReferenceUnit":null,"defaultMediaId":null,"defaultMediaUrl":null,"weightValue":null,"weightUnit":null,"dimensions":null,"optionSchemaId":null,"customFieldsetCode":null,"countryOfOriginCode":null,"pkwiuCode":null,"cnCode":null,"hsCode":null,"taxClassificationCode":null,"gtuCodes":null,"ageMin":null,"exciseCategory":null,"hazmatClass":null,"unNumber":null,"hazmatPackingGroup":null,"launchAt":null,"endOfLifeAt":null,"availableFrom":null,"availableUntil":null,"minOrderQty":null,"maxOrderQty":null,"orderQtyIncrement":null,"seoTitle":null,"seoDescription":null,"canonicalUrl":null}}},"description":"Updates an existing product by id."},"responses":{"200":{"description":"Product updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"sku\\\": null,\n  \\\"taxRateId\\\": null,\n  \\\"taxRate\\\": null,\n  \\\"defaultUnit\\\": null,\n  \\\"defaultSalesUnit\\\": null,\n  \\\"unitPriceReferenceUnit\\\": null,\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null,\n  \\\"weightValue\\\": null,\n  \\\"weightUnit\\\": null,\n  \\\"dimensions\\\": null,\n  \\\"optionSchemaId\\\": null,\n  \\\"customFieldsetCode\\\": null,\n  \\\"countryOfOriginCode\\\": null,\n  \\\"pkwiuCode\\\": null,\n  \\\"cnCode\\\": null,\n  \\\"hsCode\\\": null,\n  \\\"taxClassificationCode\\\": null,\n  \\\"gtuCodes\\\": null,\n  \\\"ageMin\\\": null,\n  \\\"exciseCategory\\\": null,\n  \\\"hazmatClass\\\": null,\n  \\\"unNumber\\\": null,\n  \\\"hazmatPackingGroup\\\": null,\n  \\\"launchAt\\\": null,\n  \\\"endOfLifeAt\\\": null,\n  \\\"availableFrom\\\": null,\n  \\\"availableUntil\\\": null,\n  \\\"minOrderQty\\\": null,\n  \\\"maxOrderQty\\\": null,\n  \\\"orderQtyIncrement\\\": null,\n  \\\"seoTitle\\\": null,\n  \\\"seoDescription\\\": null,\n  \\\"canonicalUrl\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_products","summary":"Delete product","description":"Deletes a product by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a product by id."},"responses":{"200":{"description":"Product deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/settings":{"get":{"operationId":"catalog_get_catalog_settings","summary":"Read catalog settings","tags":["Catalog"],"parameters":[],"responses":{"200":{"description":"Catalog settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"unitPriceDisplayEnabled":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_settings","summary":"Update catalog settings","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutRequestBodyContentApplicationJsonSchema"},"example":{"unitPriceDisplayEnabled":true}}}},"responses":{"200":{"description":"Updated catalog settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses200ContentApplicationJsonSchema"},"example":{"unitPriceDisplayEnabled":true}}}},"400":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"unitPriceDisplayEnabled\\\": true\n}\""}],"x-require-auth":true}},"/catalog/tags":{"get":{"operationId":"catalog_get_catalog_tags","summary":"List product tags","description":"Returns a paginated collection of product tags scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetParameters0Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetParameters2Schema"},"example":1}],"responses":{"200":{"description":"Paginated product tags","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","slug":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/tags?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/catalog/variants":{"get":{"operationId":"catalog_get_catalog_variants","summary":"List variants","description":"Returns a paginated collection of variants scoped to the authenticated organization.","tags":["Catalog"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters3Schema"},"example":"string"},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sku","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters5Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters6Schema"},"example":"string"},{"name":"isDefault","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters7Schema"},"example":"string"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters8Schema"},"example":true},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters9Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters10Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetParameters11Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated variants","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","product_id":null,"name":null,"sku":null,"barcode":null,"gtin_type":null,"hs_code":null,"status_entry_id":null,"is_default":null,"is_active":null,"weight_value":null,"weight_unit":null,"dimensions":null,"metadata":null,"option_values":null,"custom_fieldset_code":null,"default_media_id":null,"default_media_url":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/variants?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"catalog_post_catalog_variants","summary":"Create variant","description":"Creates a new product variant.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","productId":"00000000-0000-4000-8000-000000000000","gtinType":null,"hsCode":null,"defaultMediaId":null,"defaultMediaUrl":null,"taxRateId":null,"taxRate":null,"customFieldsetCode":null}}},"description":"Creates a new product variant."},"responses":{"201":{"description":"Variant created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/catalog/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"productId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"gtinType\\\": null,\n  \\\"hsCode\\\": null,\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null,\n  \\\"taxRateId\\\": null,\n  \\\"taxRate\\\": null,\n  \\\"customFieldsetCode\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"catalog_put_catalog_variants","summary":"Update variant","description":"Updates an existing variant by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","gtinType":null,"hsCode":null,"defaultMediaId":null,"defaultMediaUrl":null,"taxRateId":null,"taxRate":null,"customFieldsetCode":null}}},"description":"Updates an existing variant by id."},"responses":{"200":{"description":"Variant updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/catalog/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"gtinType\\\": null,\n  \\\"hsCode\\\": null,\n  \\\"defaultMediaId\\\": null,\n  \\\"defaultMediaUrl\\\": null,\n  \\\"taxRateId\\\": null,\n  \\\"taxRate\\\": null,\n  \\\"customFieldsetCode\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"catalog_delete_catalog_variants","summary":"Delete variant","description":"Deletes a variant by id.","tags":["Catalog"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a variant by id."},"responses":{"200":{"description":"Variant deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/catalog/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/catalog/dictionaries/{key}":{"get":{"operationId":"catalog_get_catalog_dictionaries_key","summary":"Get dictionary entries by key","description":"Returns dictionary entries for a specific key (e.g., currency, unit).","tags":["Catalog"],"parameters":[{"name":"key","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetParameters0Schema"}}],"responses":{"200":{"description":"Dictionary entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","entries":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/catalog/dictionaries/:key\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/activities":{"get":{"operationId":"customers_get_customers_activities","summary":"List activitys","description":"Returns a paginated collection of activitys scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters1Schema"},"example":1},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"dealId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"activityType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters4Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated activitys","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","activityType":"string","subject":null,"body":null,"occurredAt":null,"createdAt":"string","appearanceIcon":null,"appearanceColor":null,"entityId":null,"authorUserId":null,"authorName":null,"authorEmail":null,"dealId":null,"dealTitle":null,"customValues":null,"activityTypeLabel":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/activities?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_activities","summary":"Create activity","description":"DEPRECATED (sunset 2026-06-30): Creates a timeline activity. Use POST /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"00000000-0000-4000-8000-000000000000","activityType":"string","phoneNumber":null,"appearanceIcon":null,"appearanceColor":null}}},"description":"DEPRECATED (sunset 2026-06-30): Creates a timeline activity. Use POST /api/customers/interactions instead."},"responses":{"201":{"description":"Activity created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/activities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"activityType\\\": \\\"string\\\",\n  \\\"phoneNumber\\\": null,\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_activities","summary":"Update activity","description":"DEPRECATED (sunset 2026-06-30): Updates an activity. Use PUT /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","phoneNumber":null,"appearanceIcon":null,"appearanceColor":null}}},"description":"DEPRECATED (sunset 2026-06-30): Updates an activity. Use PUT /api/customers/interactions instead."},"responses":{"200":{"description":"Activity updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/activities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"phoneNumber\\\": null,\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_activities","summary":"Delete activity","description":"DEPRECATED (sunset 2026-06-30): Deletes an activity. Use DELETE /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"DEPRECATED (sunset 2026-06-30): Deletes an activity. Use DELETE /api/customers/interactions instead."},"responses":{"200":{"description":"Activity deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/activities\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/addresses":{"get":{"operationId":"customers_get_customers_addresses","summary":"List addresss","description":"Returns a paginated collection of addresss scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters1Schema"},"example":1},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated addresss","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","entity_id":"00000000-0000-4000-8000-000000000000","name":null,"purpose":null,"company_name":null,"address_line1":null,"address_line2":null,"building_number":null,"flat_number":null,"city":null,"region":null,"postal_code":null,"country":null,"latitude":null,"longitude":null,"is_primary":null,"organization_id":null,"tenant_id":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/addresses?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_addresses","summary":"Create address","description":"Creates a customer address record and associates it with the referenced entity.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000","addressLine1":"string","latitude":null,"longitude":null}}},"description":"Creates a customer address record and associates it with the referenced entity."},"responses":{"201":{"description":"Address created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"addressLine1\\\": \\\"string\\\",\n  \\\"latitude\\\": null,\n  \\\"longitude\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_addresses","summary":"Update address","description":"Updates fields on an existing customer address.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","latitude":null,"longitude":null}}},"description":"Updates fields on an existing customer address."},"responses":{"200":{"description":"Address updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"latitude\\\": null,\n  \\\"longitude\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_addresses","summary":"Delete address","description":"Deletes an address by id. The identifier may be included in the body or query.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an address by id. The identifier may be included in the body or query."},"responses":{"200":{"description":"Address deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/assignable-staff":{"get":{"operationId":"customers_get_customers_assignable_staff","summary":"DEPRECATED: use GET /api/staff/team-members/assignable instead.","description":"Deprecated. Returns 308 Permanent Redirect to /api/staff/team-members/assignable preserving the query string. Will be removed no earlier than the next major release.","tags":["Customers"],"deprecated":true,"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetParameters2Schema"},"example":"string"}],"responses":{"200":{"description":"Assignable staff members (only reachable by following the redirect).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","teamMemberId":"00000000-0000-4000-8000-000000000000","userId":"00000000-0000-4000-8000-000000000000","displayName":"string","email":null,"teamName":null,"user":null,"team":null}],"total":1,"totalPages":1}}}},"308":{"description":"Permanent redirect to /api/staff/team-members/assignable.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses308ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/assignable-staff?page=1&pageSize=24\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/comments":{"get":{"operationId":"customers_get_customers_comments","summary":"List comments","description":"Returns a paginated collection of comments scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters1Schema"},"example":1},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"dealId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated comments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","entity_id":null,"deal_id":null,"body":null,"author_user_id":null,"appearance_icon":null,"appearance_color":null,"organization_id":null,"tenant_id":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/comments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_comments","summary":"Create comment","description":"Adds a comment to a customer timeline.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000","body":"string","appearanceIcon":null,"appearanceColor":null}}},"description":"Adds a comment to a customer timeline."},"responses":{"201":{"description":"Comment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"authorUserId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/comments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"body\\\": \\\"string\\\",\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_comments","summary":"Update comment","description":"Updates an existing timeline comment.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","appearanceIcon":null,"appearanceColor":null}}},"description":"Updates an existing timeline comment."},"responses":{"200":{"description":"Comment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/comments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_comments","summary":"Delete comment","description":"Deletes a comment identified by `id` supplied via body or query string.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a comment identified by `id` supplied via body or query string."},"responses":{"200":{"description":"Comment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/comments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/companies":{"get":{"operationId":"customers_get_customers_companies","summary":"List companies","description":"Returns a paginated collection of companies scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters2Schema"},"example":"string"},{"name":"email","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters3Schema"},"example":"string"},{"name":"emailStartsWith","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters4Schema"},"example":"string"},{"name":"emailContains","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters5Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters7Schema"},"example":"asc"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters8Schema"},"example":"string"},{"name":"lifecycleStage","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters9Schema"},"example":"string"},{"name":"source","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters10Schema"},"example":"string"},{"name":"hasEmail","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters11Schema"},"example":"string"},{"name":"hasPhone","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters12Schema"},"example":"string"},{"name":"hasNextInteraction","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters13Schema"},"example":"string"},{"name":"createdFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters14Schema"},"example":"string"},{"name":"createdTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters15Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters16Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tagIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters17Schema"},"example":"string"},{"name":"tagIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters18Schema"},"example":"string"},{"name":"excludeIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters19Schema"},"example":"string"},{"name":"excludeLinkedPersonId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters20Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"excludeLinkedCompanyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters21Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"excludeLinkedDealId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters22Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetParameters23Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated companies","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","description":null,"owner_user_id":null,"primary_email":null,"primary_phone":null,"status":null,"lifecycle_stage":null,"source":null,"next_interaction_at":null,"next_interaction_name":null,"next_interaction_ref_id":null,"next_interaction_icon":null,"next_interaction_color":null,"organization_id":null,"tenant_id":null,"created_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/companies?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_companies","summary":"Create company","description":"Creates a company record and associated profile data.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","displayName":"string","description":null,"primaryEmail":null,"primaryPhone":null,"nextInteraction":null,"legalName":null,"brandName":null,"domain":null,"websiteUrl":null,"sizeBucket":null,"annualRevenue":null}}},"description":"Creates a company record and associated profile data."},"responses":{"201":{"description":"Company created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"companyId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/companies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"displayName\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"primaryEmail\\\": null,\n  \\\"primaryPhone\\\": null,\n  \\\"nextInteraction\\\": null,\n  \\\"legalName\\\": null,\n  \\\"brandName\\\": null,\n  \\\"domain\\\": null,\n  \\\"websiteUrl\\\": null,\n  \\\"sizeBucket\\\": null,\n  \\\"annualRevenue\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_companies","summary":"Update company","description":"Updates company profile fields, tags, or custom attributes.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","description":null,"primaryEmail":null,"primaryPhone":null,"nextInteraction":null,"legalName":null,"brandName":null,"domain":null,"websiteUrl":null,"sizeBucket":null,"annualRevenue":null}}},"description":"Updates company profile fields, tags, or custom attributes."},"responses":{"200":{"description":"Company updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/companies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"description\\\": null,\n  \\\"primaryEmail\\\": null,\n  \\\"primaryPhone\\\": null,\n  \\\"nextInteraction\\\": null,\n  \\\"legalName\\\": null,\n  \\\"brandName\\\": null,\n  \\\"domain\\\": null,\n  \\\"websiteUrl\\\": null,\n  \\\"sizeBucket\\\": null,\n  \\\"annualRevenue\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_companies","summary":"Delete company","description":"Deletes a company by id. The identifier can be provided via body or query.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a company by id. The identifier can be provided via body or query."},"responses":{"200":{"description":"Company deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"422":{"description":"Company has dependent records (people, deals, or direct staff); unlink or reassign before delete.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchema"},"example":{"error":"string","code":"COMPANY_HAS_DEPENDENTS"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/companies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/dashboard/widgets/customer-todos":{"get":{"operationId":"customers_get_customers_dashboard_widgets_customer_todos","summary":"Fetch recent customer tasks","description":"Returns the most recent customer tasks for display on dashboards, including legacy compatibility rows when needed.","tags":["Customers"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters0Schema"},"example":1},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Widget payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","todoId":"00000000-0000-4000-8000-000000000000","todoSource":"string","todoTitle":null,"createdAt":"string","organizationId":null,"entity":{"id":null,"displayName":null,"kind":null,"ownerUserId":null}}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Requested scope is not accessible","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dashboard/widgets/customer-todos?limit=5\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dashboard/widgets/new-customers":{"get":{"operationId":"customers_get_customers_dashboard_widgets_new_customers","summary":"Fetch recently created customers","description":"Returns the latest customers created within the scoped tenant/organization for dashboard display.","tags":["Customers"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetParameters0Schema"},"example":1},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetParameters3Schema"},"example":"person"}],"responses":{"200":{"description":"Widget payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","displayName":null,"kind":null,"organizationId":null,"createdAt":"string","ownerUserId":null}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Requested scope is not accessible","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dashboard/widgets/new-customers?limit=5\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dashboard/widgets/new-deals":{"get":{"operationId":"customers_get_customers_dashboard_widgets_new_deals","summary":"Fetch recently created deals","description":"Returns the latest deals created within the scoped tenant/organization for dashboard display.","tags":["Customers"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetParameters0Schema"},"example":1},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Widget payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"status":null,"organizationId":null,"createdAt":"string","ownerUserId":null,"valueAmount":null,"valueCurrency":null}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Requested scope is not accessible","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dashboard/widgets/new-deals?limit=5\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dashboard/widgets/next-interactions":{"get":{"operationId":"customers_get_customers_dashboard_widgets_next_interactions","summary":"Fetch upcoming customer interactions","description":"Lists upcoming (or optionally past) customer interaction reminders ordered by interaction date.","tags":["Customers"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters0Schema"},"example":1},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"includePast","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters3Schema"},"example":"true"}],"responses":{"200":{"description":"Widget payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","displayName":null,"kind":null,"organizationId":null,"nextInteractionAt":null,"nextInteractionName":null,"nextInteractionIcon":null,"nextInteractionColor":null,"ownerUserId":null}],"now":"string"}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Requested scope is not accessible","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dashboard/widgets/next-interactions?limit=5\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/aggregate":{"get":{"operationId":"customers_get_customers_deals_aggregate","summary":"Per-stage counts and currency totals for kanban lane headers","description":"Returns per-stage counts and totals for deals, with values converted to the tenant base currency where rates are available. Used to power kanban lane headers without loading every deal.","tags":["Customers"],"parameters":[{"name":"pipelineId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters1Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters2Schema"},"example":["string"]},{"name":"ownerUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters3Schema"},"example":["00000000-0000-4000-8000-000000000000"]},{"name":"personId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters4Schema"},"example":["00000000-0000-4000-8000-000000000000"]},{"name":"companyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters5Schema"},"example":["00000000-0000-4000-8000-000000000000"]},{"name":"isStuck","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters6Schema"},"example":true},{"name":"isOverdue","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters7Schema"},"example":true},{"name":"expectedCloseAtFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters8Schema"},"example":"string"},{"name":"expectedCloseAtTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters9Schema"},"example":"string"}],"responses":{"200":{"description":"Per-stage aggregate payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchema"},"example":{"baseCurrencyCode":null,"perStage":[{"stageId":"string","count":1,"openCount":1,"totalInBaseCurrency":1,"byCurrency":[{"currency":"string","total":1,"count":1}],"convertedAll":true,"missingRateCurrencies":["string"]}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/aggregate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/bulk-update-owner":{"post":{"operationId":"customers_post_customers_deals_bulk_update_owner","summary":"Bulk reassign deal owner","description":"Queues a background job that reassigns the listed deals to a new owner (or clears the owner when null).","tags":["Customer Relationship Management"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateOwnerPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateOwnerPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateOwnerPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/deals/bulk-update-owner\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/bulk-update-stage":{"post":{"operationId":"customers_post_customers_deals_bulk_update_stage","summary":"Bulk update deal pipeline stage","description":"Queues a background job that moves the listed deals to the same pipeline stage. Returns a progress job id to poll for completion.","tags":["Customer Relationship Management"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateStagePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateStagePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateStagePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/deals/bulk-update-stage\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/map":{"get":{"operationId":"customers_get_customers_deals_map","summary":"Paginated deals that have a resolvable map location","description":"Returns a page of deals that have a coordinate-bearing linked company/person address, each enriched with one resolved location (company primary first, then earliest created; person addresses as fallback). Deals with no coordinate-bearing address are excluded entirely, so every item carries a non-null location in normal operation; the schema keeps location nullable only for the rare case where the address is deleted between the located-deal resolution and the page fetch.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters3Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters4Schema"},"example":"string"},{"name":"pipelineStage","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters5Schema"},"example":"string"},{"name":"pipelineId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters6Schema"},"example":"string"},{"name":"pipelineStageId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ownerUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters8Schema"},"example":"string"},{"name":"expectedCloseAtFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters9Schema"},"example":"string"},{"name":"expectedCloseAtTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters10Schema"},"example":"string"},{"name":"isStuck","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters11Schema"},"example":true},{"name":"isOverdue","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters12Schema"},"example":true},{"name":"needsAttention","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters13Schema"},"example":true},{"name":"valueCurrency","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters14Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters15Schema"},"example":"createdAt"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters16Schema"},"example":"asc"},{"name":"personEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters17Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Deprecated; use personId"},{"name":"companyEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters18Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Deprecated; use companyId"},{"name":"personId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters19Schema"},"example":"string"},{"name":"companyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters20Schema"},"example":"string"}],"responses":{"200":{"description":"Paged located deals","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"status":null,"pipelineId":null,"pipelineStageId":null,"pipelineStage":null,"valueAmount":null,"valueCurrency":null,"probability":null,"expectedCloseAt":null,"ownerUserId":null,"updatedAt":null,"companies":[{"id":"00000000-0000-4000-8000-000000000000","label":null}],"people":[{"id":"00000000-0000-4000-8000-000000000000","label":null}],"location":null}],"total":1,"totalPages":1}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/map?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals":{"get":{"operationId":"customers_get_customers_deals","summary":"List deals","description":"Returns a paginated collection of deals scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters3Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters4Schema"},"example":"string"},{"name":"pipelineStage","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters5Schema"},"example":"string"},{"name":"pipelineId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters6Schema"},"example":"string"},{"name":"pipelineStageId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ownerUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters8Schema"},"example":"string"},{"name":"expectedCloseAtFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters9Schema"},"example":"string"},{"name":"expectedCloseAtTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters10Schema"},"example":"string"},{"name":"isStuck","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters11Schema"},"example":true},{"name":"isOverdue","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters12Schema"},"example":true},{"name":"needsAttention","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters13Schema"},"example":true},{"name":"valueCurrency","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters14Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters15Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters16Schema"},"example":"asc"},{"name":"personEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters17Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Deprecated; use personId"},{"name":"companyEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters18Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Deprecated; use companyId"},{"name":"personId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters19Schema"},"example":"string"},{"name":"companyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters20Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters21Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated deals","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"description":null,"status":null,"pipeline_stage":null,"pipeline_id":null,"pipeline_stage_id":null,"value_amount":null,"value_currency":null,"probability":null,"expected_close_at":null,"owner_user_id":null,"source":null,"organization_id":null,"tenant_id":null,"created_at":null,"updated_at":null,"organizationId":null,"tenantId":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_deals","summary":"Create deal","description":"Creates a sales deal, optionally associating people and companies.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","title":"string","ownerUserId":null,"primaryPersonEntityId":null}}},"description":"Creates a sales deal, optionally associating people and companies."},"responses":{"201":{"description":"Deal created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/deals\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"ownerUserId\\\": null,\n  \\\"primaryPersonEntityId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_deals","summary":"Update deal","description":"Updates pipeline position, metadata, or associations for an existing deal.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","ownerUserId":null,"primaryPersonEntityId":null}}},"description":"Updates pipeline position, metadata, or associations for an existing deal."},"responses":{"200":{"description":"Deal updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/deals\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"ownerUserId\\\": null,\n  \\\"primaryPersonEntityId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_deals","summary":"Delete deal","description":"Deletes a deal by `id`. The identifier may be provided in the body or query parameters.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a deal by `id`. The identifier may be provided in the body or query parameters."},"responses":{"200":{"description":"Deal deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/deals\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/deals/summary":{"get":{"operationId":"customers_get_customers_deals_summary","summary":"Pipeline KPI metrics with period-over-period deltas for the deals list","description":"Returns the four list-level KPI cards (pipeline value, active deals, won this quarter, win rate) with quarter-over-quarter deltas, per-stage open-pipeline breakdown, top owners, and a 6-month win-rate series. Values are converted to the tenant base currency where rates are available; partial conversions are disclosed via convertedAll/missingRateCurrencies.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Deals KPI summary payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchema"},"example":{"baseCurrencyCode":null,"convertedAll":true,"missingRateCurrencies":["string"],"pipelineValue":{"value":1,"delta":{"value":1,"direction":"up"},"stages":[{"stage":null,"count":1,"value":1}]},"activeDeals":{"value":1,"delta":{"value":1,"direction":"up"},"ownersCount":1,"needAttention":1,"owners":[{"id":"string","count":1}],"ownersOverflow":1},"wonThisQuarter":{"value":1,"delta":{"value":1,"direction":"up"},"dealsClosed":1,"avgDeal":1},"winRate":{"value":1,"deltaPp":1,"direction":"up","previousValue":1,"series":[{"period":"string","rate":1}]}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/summary\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dictionaries/currency":{"get":{"operationId":"customers_get_customers_dictionaries_currency","summary":"Resolve currency dictionary","description":"Returns the active currency dictionary for the current organization scope, falling back to shared entries when required.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Currency dictionary entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","entries":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Currency dictionary missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/currency\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dictionaries/kind-settings":{"get":{"operationId":"customers_get_customers_dictionaries_kind_settings","summary":"List kind settings","description":"Returns selection mode and visibility settings for each dictionary kind.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Kind settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","kind":"string","selectionMode":"single","visibleInTags":true,"sortOrder":1}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/kind-settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"customers_patch_customers_dictionaries_kind_settings","summary":"Update kind setting","description":"Creates or updates settings for a specific dictionary kind.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchema"},"example":{"kind":"string"}}}},"responses":{"200":{"description":"Setting updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","kind":"string","selectionMode":"single","visibleInTags":true,"sortOrder":1}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/kind-settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"kind\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/customers/interactions/cancel":{"post":{"operationId":"customers_post_customers_interactions_cancel","summary":"Cancel an interaction","description":"Marks an interaction as canceled.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Interaction canceled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Interaction not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/interactions/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/interactions/complete":{"post":{"operationId":"customers_post_customers_interactions_complete","summary":"Complete an interaction","description":"Marks an interaction as done and sets occurredAt to current time (or a provided timestamp).","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Interaction completed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Interaction not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/interactions/complete\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/interactions/conflicts":{"get":{"operationId":"customers_get_customers_interactions_conflicts","summary":"Detect scheduling conflicts","description":"Checks for overlapping planned interactions within the requested time window.","tags":["Customers"],"parameters":[{"name":"date","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters0Schema"},"example":"string"},{"name":"startTime","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters1Schema"},"example":"string"},{"name":"duration","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters2Schema"},"example":1},{"name":"excludeId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"userId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"timezoneOffsetMinutes","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetParameters5Schema"},"example":1}],"responses":{"200":{"description":"Conflict detection result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"result":{"hasConflicts":true,"conflicts":[{"id":"string","title":null,"startTime":"string","endTime":"string","type":"string"}]}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/interactions/conflicts?date=string&startTime=string&duration=1\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/interactions/counts":{"get":{"operationId":"customers_get_customers_interactions_counts","summary":"Get interaction counts by type","description":"Returns per-type interaction counts scoped to an entity.","tags":["Customers"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetParameters1Schema"},"example":"done"}],"responses":{"200":{"description":"Counts by interaction type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"result":{"call":1,"email":1,"meeting":1,"note":1,"task":1,"total":1}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/interactions/counts?entityId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/interactions":{"get":{"operationId":"customers_get_customers_interactions","summary":"List interactions","description":"Returns a paginated collection of interactions scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters0Schema"},"example":1},{"name":"cursor","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters1Schema"},"example":"string"},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"dealId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters4Schema"},"example":"string"},{"name":"interactionType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters5Schema"},"example":"string"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters6Schema"},"example":"string"},{"name":"excludeInteractionType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters7Schema"},"example":"string"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters8Schema"},"example":"string"},{"name":"from","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters9Schema"},"example":"2025-01-01T00:00:00.000Z"},{"name":"to","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters10Schema"},"example":"2025-01-01T00:00:00.000Z"},{"name":"recurrenceMasters","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters11Schema"},"example":"true"},{"name":"pinned","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters12Schema"},"example":"true"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters13Schema"},"example":"scheduledAt"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters14Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetParameters15Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated interactions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","entityId":null,"dealId":null,"interactionType":"string","title":null,"body":null,"status":"string","scheduledAt":null,"occurredAt":null,"priority":null,"authorUserId":null,"ownerUserId":null,"externalMessageId":null,"appearanceIcon":null,"appearanceColor":null,"source":null,"duration":null,"durationMinutes":null,"location":null,"allDay":null,"recurrenceRule":null,"recurrenceEnd":null,"participants":null,"reminderMinutes":null,"visibility":null,"linkedEntities":null,"guestPermissions":null,"organizationId":null,"tenantId":null,"createdAt":null,"updatedAt":null,"authorName":null,"authorEmail":null,"dealTitle":null,"customValues":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/interactions?limit=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_interactions","summary":"Create interaction","description":"Creates a new interaction linked to a customer entity or deal.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{}}},"description":"Creates a new interaction linked to a customer entity or deal."},"responses":{"201":{"description":"Interaction created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/interactions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_interactions","summary":"Update interaction","description":"Updates fields for an existing interaction.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{}}},"description":"Updates fields for an existing interaction."},"responses":{"200":{"description":"Interaction updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/interactions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_interactions","summary":"Delete interaction","description":"Soft-deletes an interaction identified by `id`. Accepts id via body or query string.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes an interaction identified by `id`. Accepts id via body or query string."},"responses":{"200":{"description":"Interaction deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/interactions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/interactions/tasks":{"get":{"operationId":"customers_get_customers_interactions_tasks","summary":"List customertasks","description":"Returns a paginated collection of customertasks scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters2Schema"},"example":"string"},{"name":"all","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters3Schema"},"example":"string"},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated customertasks","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","todoId":"string","todoSource":"string","todoTitle":null,"todoIsDone":null,"todoPriority":null,"todoSeverity":null,"todoDescription":null,"todoDueAt":null,"todoCustomValues":null,"todoOrganizationId":null,"organizationId":"string","tenantId":"string","createdAt":"string","externalHref":null,"customer":{"id":null,"displayName":null,"kind":null}}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/interactions/tasks?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/labels/assign":{"post":{"operationId":"customers_post_customers_labels_assign","summary":"Assign label","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchema"},"example":{"labelId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Already assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"201":{"description":"Assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Label or entity not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/labels/assign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"labelId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/labels":{"get":{"operationId":"customers_get_customers_labels","summary":"List labels","description":"Returns labels for the current user within the selected organization. Optionally includes assignment status for a specific entity.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Labels list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","slug":"string","label":"string"}],"assignedIds":["00000000-0000-4000-8000-000000000000"],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/labels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_labels","summary":"Create label","description":"Creates a new label scoped to the current user and selected organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchema"},"example":{"label":"string"}}}},"responses":{"201":{"description":"Label created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","slug":"string","label":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Duplicate slug","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/labels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"label\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/customers/labels/unassign":{"post":{"operationId":"customers_post_customers_labels_unassign","summary":"Unassign label","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchema"},"example":{"labelId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Unassigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Label or entity not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/labels/unassign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"labelId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/people/check-phone":{"get":{"operationId":"customers_get_customers_people_check_phone","summary":"Find person by phone digits","description":"Performs an exact digits comparison (stripping non-numeric characters) to determine whether a customer contact matches the provided phone fragment.","tags":["Customers"],"parameters":[{"name":"digits","in":"query","required":true,"schema":{}}],"responses":{"200":{"description":"Matching contact (if any)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchema"},"example":{"match":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/check-phone\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people":{"get":{"operationId":"customers_get_customers_people","summary":"List people","description":"Returns a paginated collection of people scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters2Schema"},"example":"string"},{"name":"email","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters3Schema"},"example":"string"},{"name":"emailStartsWith","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters4Schema"},"example":"string"},{"name":"emailContains","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters5Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters6Schema"},"example":"string"},{"name":"lifecycleStage","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters7Schema"},"example":"string"},{"name":"source","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters8Schema"},"example":"string"},{"name":"hasEmail","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters9Schema"},"example":"string"},{"name":"hasPhone","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters10Schema"},"example":"string"},{"name":"hasNextInteraction","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters11Schema"},"example":"string"},{"name":"createdFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters12Schema"},"example":"string"},{"name":"createdTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters13Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters14Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters15Schema"},"example":"asc"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters16Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"tagIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters17Schema"},"example":"string"},{"name":"tagIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters18Schema"},"example":"string"},{"name":"excludeIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters19Schema"},"example":"string"},{"name":"excludeLinkedCompanyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters20Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"excludeLinkedDealId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters21Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetParameters22Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated people","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","description":null,"owner_user_id":null,"primary_email":null,"primary_phone":null,"status":null,"lifecycle_stage":null,"source":null,"next_interaction_at":null,"next_interaction_name":null,"next_interaction_ref_id":null,"next_interaction_icon":null,"next_interaction_color":null,"organization_id":null,"tenant_id":null,"created_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_people","summary":"Create person","description":"Creates a person contact using scoped organization and tenant identifiers.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","description":null,"primaryEmail":null,"primaryPhone":null,"nextInteraction":null,"firstName":"string","lastName":"string","linkedInUrl":null,"twitterUrl":null,"companyEntityId":null}}},"description":"Creates a person contact using scoped organization and tenant identifiers."},"responses":{"201":{"description":"Person created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"personId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/people\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"description\\\": null,\n  \\\"primaryEmail\\\": null,\n  \\\"primaryPhone\\\": null,\n  \\\"nextInteraction\\\": null,\n  \\\"firstName\\\": \\\"string\\\",\n  \\\"lastName\\\": \\\"string\\\",\n  \\\"linkedInUrl\\\": null,\n  \\\"twitterUrl\\\": null,\n  \\\"companyEntityId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_people","summary":"Update person","description":"Updates contact details or custom fields for a person.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","description":null,"primaryEmail":null,"primaryPhone":null,"nextInteraction":null,"linkedInUrl":null,"twitterUrl":null,"companyEntityId":null}}},"description":"Updates contact details or custom fields for a person."},"responses":{"200":{"description":"Person updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/people\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"description\\\": null,\n  \\\"primaryEmail\\\": null,\n  \\\"primaryPhone\\\": null,\n  \\\"nextInteraction\\\": null,\n  \\\"linkedInUrl\\\": null,\n  \\\"twitterUrl\\\": null,\n  \\\"companyEntityId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_people","summary":"Delete person","description":"Deletes a person by id. Request body or query may provide the identifier.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a person by id. Request body or query may provide the identifier."},"responses":{"200":{"description":"Person deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"422":{"description":"Person has dependent records (e.g. linked deals); unlink or reassign before delete.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchema"},"example":{"error":"string","code":"PERSON_HAS_DEPENDENTS"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/people\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/pipeline-stages/reorder":{"post":{"operationId":"customers_post_customers_pipeline_stages_reorder","summary":"Reorder pipeline stages","description":"Updates the order of pipeline stages in bulk.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","stages":[{"id":"00000000-0000-4000-8000-000000000000","order":1}]}}}},"responses":{"200":{"description":"Stages reordered","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/pipeline-stages/reorder\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"stages\\\": [\n    {\n      \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"order\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true}},"/customers/pipeline-stages":{"get":{"operationId":"customers_get_customers_pipeline_stages","summary":"List pipeline stages","description":"Returns pipeline stages for the authenticated organization, optionally filtered by pipelineId.","tags":["Customers"],"parameters":[{"name":"pipelineId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Stage list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","pipelineId":"00000000-0000-4000-8000-000000000000","label":"string","order":1,"color":null,"icon":null,"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","createdAt":"2025-01-01T00:00:00.000Z","updatedAt":"2025-01-01T00:00:00.000Z"}],"total":1}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/pipeline-stages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_pipeline_stages","summary":"Create pipeline stage","description":"Creates a new pipeline stage.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","pipelineId":"00000000-0000-4000-8000-000000000000","label":"string","color":null,"icon":null}}}},"responses":{"201":{"description":"Stage created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/pipeline-stages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"pipelineId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"label\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_pipeline_stages","summary":"Update pipeline stage","description":"Updates an existing pipeline stage.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","color":null,"icon":null}}}},"responses":{"200":{"description":"Stage updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Stage not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/pipeline-stages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_pipeline_stages","summary":"Delete pipeline stage","description":"Deletes a pipeline stage. Returns 409 if active deals use this stage.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Stage deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Stage not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stage has active deals","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/pipeline-stages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/pipelines":{"get":{"operationId":"customers_get_customers_pipelines","summary":"List pipelines","description":"Returns a list of pipelines scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"isDefault","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetParameters0Schema"},"example":"string"}],"responses":{"200":{"description":"Pipeline list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","isDefault":true,"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","createdAt":"2025-01-01T00:00:00.000Z","updatedAt":"2025-01-01T00:00:00.000Z"}],"total":1}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/pipelines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_pipelines","summary":"Create pipeline","description":"Creates a new pipeline within the authenticated organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string"}}}},"responses":{"201":{"description":"Pipeline created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/pipelines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_pipelines","summary":"Update pipeline","description":"Updates an existing pipeline.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Pipeline updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Pipeline not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/pipelines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_pipelines","summary":"Delete pipeline","description":"Deletes a pipeline. Returns 409 if active deals exist.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Pipeline deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Pipeline not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Pipeline has active deals","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/pipelines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/settings/address-format":{"get":{"operationId":"customers_get_customers_settings_address_format","summary":"Retrieve address format","description":"Returns the current address formatting preference for the selected organization.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Current address format","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses200ContentApplicationJsonSchema"},"example":{"addressFormat":"string"}}}},"400":{"description":"Organization context missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/settings/address-format\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_settings_address_format","summary":"Update address format","description":"Updates the address format preference for the selected organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","addressFormat":"line_first"}}}},"responses":{"200":{"description":"Updated address format","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses200ContentApplicationJsonSchema"},"example":{"addressFormat":"string"}}}},"400":{"description":"Invalid payload or organization context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/settings/address-format\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"addressFormat\\\": \\\"line_first\\\"\n}\""}],"x-require-auth":true}},"/customers/settings/dictionary-sort-modes":{"get":{"operationId":"customers_get_customers_settings_dictionary_sort_modes","summary":"Retrieve dictionary sort modes","description":"Returns entry sort preferences for customer dictionaries in the selected organization.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Current dictionary sort modes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchema"},"example":{"dictionarySortModes":{"key":"label_asc"}}}}},"400":{"description":"Organization context missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/settings/dictionary-sort-modes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"customers_patch_customers_settings_dictionary_sort_modes","summary":"Update dictionary sort modes","description":"Updates entry sort preferences for customer dictionaries in the selected organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchema"},"example":{"dictionarySortModes":{"key":"label_asc"}}}}},"responses":{"200":{"description":"Updated dictionary sort modes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchema"},"example":{"dictionarySortModes":{"key":"label_asc"}}}}},"400":{"description":"Invalid payload or organization context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/customers/settings/dictionary-sort-modes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"dictionarySortModes\\\": {\n    \\\"key\\\": \\\"label_asc\\\"\n  }\n}\""}],"x-require-auth":true}},"/customers/settings/stuck-threshold":{"get":{"operationId":"customers_get_customers_settings_stuck_threshold","summary":"Retrieve stuck-threshold days","description":"Returns the current stuck-deal threshold (in days) for the selected organization.","tags":["Customers"],"parameters":[],"responses":{"200":{"description":"Current threshold","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses200ContentApplicationJsonSchema"},"example":{"stuckThresholdDays":1}}}},"400":{"description":"Organization context missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/settings/stuck-threshold\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_settings_stuck_threshold","summary":"Update stuck-threshold days","description":"Updates the stuck-deal threshold for the selected organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","stuckThresholdDays":1}}}},"responses":{"200":{"description":"Updated threshold","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses200ContentApplicationJsonSchema"},"example":{"stuckThresholdDays":1}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/settings/stuck-threshold\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"stuckThresholdDays\\\": 1\n}\""}],"x-require-auth":true}},"/customers/tags/assign":{"post":{"operationId":"customers_post_customers_tags_assign","summary":"Assign tag to customer entity","description":"Links a tag to a customer entity within the validated tenant / organization scope.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","tagId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"201":{"description":"Tag assigned to customer","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"400":{"description":"Validation or assignment failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient tenant/organization access","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/tags/assign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tagId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/tags":{"get":{"operationId":"customers_get_customers_tags","summary":"List tags","description":"Returns a paginated collection of tags scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated tags","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","slug":"string","label":"string","color":null,"description":null,"organization_id":null,"tenant_id":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/tags?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_tags","summary":"Create tag","description":"Creates a tag scoped to the current tenant and organization.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","slug":"string","label":"string"}}},"description":"Creates a tag scoped to the current tenant and organization."},"responses":{"201":{"description":"Tag created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"slug\\\": \\\"string\\\",\n  \\\"label\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_tags","summary":"Update tag","description":"Updates label, color, or description for an existing tag.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates label, color, or description for an existing tag."},"responses":{"200":{"description":"Tag updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_tags","summary":"Delete tag","description":"Deletes a tag identified by `id`. The identifier may be provided via body or query string.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a tag identified by `id`. The identifier may be provided via body or query string."},"responses":{"200":{"description":"Tag deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/tags/unassign":{"post":{"operationId":"customers_post_customers_tags_unassign","summary":"Remove tag from customer entity","description":"Detaches a tag from a customer entity within the validated tenant / organization scope.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","tagId":"00000000-0000-4000-8000-000000000000","entityId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Tag unassigned from customer","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchema"},"example":{"id":null}}}},"400":{"description":"Validation or unassignment failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Insufficient tenant/organization access","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/tags/unassign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tagId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/todos":{"get":{"operationId":"customers_get_customers_todos","summary":"List customertodos","description":"Returns a paginated collection of customertodos scoped to the authenticated organization.","tags":["Customers"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters2Schema"},"example":"string"},{"name":"all","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters3Schema"},"example":"string"},{"name":"entityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated customertodos","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","todoId":"string","todoSource":"string","todoTitle":null,"todoIsDone":null,"todoPriority":null,"todoSeverity":null,"todoDescription":null,"todoDueAt":null,"todoCustomValues":null,"todoOrganizationId":null,"todoUpdatedAt":null,"organizationId":"string","tenantId":"string","createdAt":"string","externalHref":null,"customer":{"id":null,"displayName":null,"kind":null}}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/todos?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_todos","summary":"Create customertodo","description":"DEPRECATED (sunset 2026-06-30): Creates a customer task. Use POST /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"00000000-0000-4000-8000-000000000000","title":"string","todoSource":"customers:interaction"}}},"description":"DEPRECATED (sunset 2026-06-30): Creates a customer task. Use POST /api/customers/interactions instead."},"responses":{"201":{"description":"CustomerTodo created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchema"},"example":{"linkId":null,"todoId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/todos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"todoSource\\\": \\\"customers:interaction\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_todos","summary":"Update customertodo","description":"DEPRECATED (sunset 2026-06-30): Updates a customer task. Use PUT /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"DEPRECATED (sunset 2026-06-30): Updates a customer task. Use PUT /api/customers/interactions instead."},"responses":{"200":{"description":"CustomerTodo updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/todos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_todos","summary":"Delete customertodo","description":"DEPRECATED (sunset 2026-06-30): Deletes a customer task. Use DELETE /api/customers/interactions instead.","tags":["Customers"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"DEPRECATED (sunset 2026-06-30): Deletes a customer task. Use DELETE /api/customers/interactions instead."},"responses":{"200":{"description":"CustomerTodo deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/todos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/companies/{id}/people":{"get":{"operationId":"customers_get_customers_companies_id_people","summary":"List linked people for a company","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetParameters0Schema"}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetParameters3Schema"},"example":"string"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetParameters4Schema"},"example":"name-asc"}],"responses":{"200":{"description":"Paginated linked people","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","displayName":"string","primaryEmail":null,"primaryPhone":null,"status":null,"lifecycleStage":null,"jobTitle":null,"department":null,"createdAt":"string","organizationId":null,"temperature":null,"source":null,"linkedAt":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/companies/:id/people?page=1&pageSize=20&sort=name-asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/companies/{id}/roles":{"get":{"operationId":"customers_get_customers_companies_id_roles","summary":"List roles for a company","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role assignments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","entityType":"company","entityId":"00000000-0000-4000-8000-000000000000","userId":"00000000-0000-4000-8000-000000000000","userName":null,"userEmail":null,"userPhone":null,"roleType":"string","createdAt":"string","updatedAt":"string"}]}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/companies/00000000-0000-4000-8000-000000000000/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_companies_id_roles","summary":"Assign a role to a company","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchema"},"example":{"roleType":"string","userId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"201":{"description":"Role created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Role already assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/companies/00000000-0000-4000-8000-000000000000/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"roleType\\\": \\\"string\\\",\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_companies_id_roles","summary":"Update a company role assignment","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutRequestBodyContentApplicationJsonSchema"},"example":{"userId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Role updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/companies/00000000-0000-4000-8000-000000000000/roles?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_companies_id_roles","summary":"Remove a company role assignment","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/companies/00000000-0000-4000-8000-000000000000/roles?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/companies/{id}":{"get":{"operationId":"customers_get_customers_companies_id","summary":"Fetch company with related data","description":"Returns a company customer record with optional related resources such as addresses, comments, activities, interactions, deals, todos, and linked people.","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetParameters0Schema"}},{"name":"include","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetParameters1Schema"},"example":"string","description":"Comma-separated list of relations to include (addresses, comments, activities, interactions, deals, todos, people)."}],"responses":{"200":{"description":"Company detail payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchema"},"example":{"interactionMode":"canonical","company":{"id":"00000000-0000-4000-8000-000000000000","displayName":null,"description":null,"ownerUserId":null,"primaryEmail":null,"primaryPhone":null,"status":null,"lifecycleStage":null,"source":null,"nextInteractionAt":null,"nextInteractionName":null,"nextInteractionRefId":null,"nextInteractionIcon":null,"nextInteractionColor":null,"organizationId":null,"tenantId":null,"temperature":null,"renewalQuarter":null,"createdAt":"string","updatedAt":"string"},"profile":null,"customFields":{},"tags":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","color":null}],"addresses":[{"id":"00000000-0000-4000-8000-000000000000","name":null,"purpose":null,"addressLine1":null,"addressLine2":null,"buildingNumber":null,"flatNumber":null,"city":null,"region":null,"postalCode":null,"country":null,"latitude":null,"longitude":null,"isPrimary":null,"createdAt":"string"}],"comments":[{"id":"00000000-0000-4000-8000-000000000000","body":null,"authorUserId":null,"authorName":null,"authorEmail":null,"dealId":null,"createdAt":"string","appearanceIcon":null,"appearanceColor":null}],"activities":[{"id":"00000000-0000-4000-8000-000000000000","activityType":"string","subject":null,"body":null,"occurredAt":null,"dealId":null,"authorUserId":null,"authorName":null,"authorEmail":null,"createdAt":"string","appearanceIcon":null,"appearanceColor":null}],"interactions":[{"id":"00000000-0000-4000-8000-000000000000","entityId":null,"interactionType":"string","title":null,"body":null,"status":"string","scheduledAt":null,"occurredAt":null,"priority":null,"authorUserId":null,"ownerUserId":null,"dealId":null,"organizationId":null,"tenantId":null,"authorName":null,"authorEmail":null,"dealTitle":null,"customValues":null,"appearanceIcon":null,"appearanceColor":null,"source":null,"createdAt":"string","updatedAt":"string"}],"deals":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"status":null,"pipelineStage":null,"valueAmount":null,"valueCurrency":null,"probability":null,"expectedCloseAt":null,"ownerUserId":null,"source":null,"createdAt":"string","updatedAt":"string"}],"todos":[{"id":"00000000-0000-4000-8000-000000000000","todoId":"00000000-0000-4000-8000-000000000000","todoSource":"string","createdAt":"string","createdByUserId":null,"title":null,"isDone":null,"priority":null,"severity":null,"description":null,"dueAt":null,"todoOrganizationId":null,"customValues":null}],"people":[{"id":"00000000-0000-4000-8000-000000000000","displayName":null,"primaryEmail":null,"primaryPhone":null,"status":null,"lifecycleStage":null,"jobTitle":null,"department":null,"createdAt":"string","organizationId":null,"source":null,"temperature":null,"linkedAt":null}],"viewer":{"userId":null,"name":null,"email":null}}}}},"400":{"description":"Invalid identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden — caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Company not found, or its organization is not in the caller’s scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/companies/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/{id}/companies":{"get":{"operationId":"customers_get_customers_deals_id_companies","summary":"List linked companies for a deal","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetParameters0Schema"}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetParameters3Schema"},"example":"string"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetParameters4Schema"},"example":"label-asc"}],"responses":{"200":{"description":"Paginated linked companies","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","subtitle":null,"kind":"company","linkedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/:id/companies?page=1&pageSize=20&sort=label-asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/{id}/people":{"get":{"operationId":"customers_get_customers_deals_id_people","summary":"List linked people for a deal","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetParameters0Schema"}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetParameters3Schema"},"example":"string"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetParameters4Schema"},"example":"label-asc"}],"responses":{"200":{"description":"Paginated linked people","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","subtitle":null,"kind":"person","linkedAt":"string","isPrimary":true}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/:id/people?page=1&pageSize=20&sort=label-asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/{id}":{"get":{"operationId":"customers_get_customers_deals_id","summary":"Fetch deal with associations and pipeline context","description":"Returns a deal with linked people, companies, closure fields, optional pipeline history, custom fields, and viewer context.","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetParameters0Schema"}},{"name":"include","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetParameters1Schema"},"example":"string"}],"responses":{"200":{"description":"Deal detail payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchema"},"example":{"deal":{"id":"00000000-0000-4000-8000-000000000000","title":null,"description":null,"status":null,"pipelineStage":null,"pipelineId":null,"pipelineStageId":null,"valueAmount":null,"valueCurrency":null,"probability":null,"expectedCloseAt":null,"ownerUserId":null,"source":null,"closureOutcome":null,"lossReasonId":null,"lossNotes":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"},"people":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","subtitle":null,"kind":"person"}],"companies":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","subtitle":null,"kind":"company"}],"customFields":{},"viewer":{"userId":null,"name":null,"email":null},"pipelineStages":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","order":1,"color":null,"icon":null}],"stageTransitions":[{"stageId":"00000000-0000-4000-8000-000000000000","stageLabel":"string","stageOrder":1,"transitionedAt":"string"}],"owner":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden — caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Deal not found, or its organization is not in the caller’s scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/deals/{id}/stats":{"get":{"operationId":"customers_get_customers_deals_id_stats","summary":"Fetch analytics for a closed deal","description":"Returns week-to-date closure counts, sales cycle length, quarter ranking, and loss reason context for a closed deal.","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetParameters0Schema"}}],"responses":{"200":{"description":"Deal closure stats payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchema"},"example":{"dealValue":null,"dealCurrency":null,"closureOutcome":"won","closedAt":"string","pipelineName":null,"dealsClosedThisPeriod":1,"salesCycleDays":null,"dealRankInQuarter":null,"lossReason":null}}}},"400":{"description":"Deal is not closed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden — caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Deal not found, or its organization is not in the caller’s scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/deals/:id/stats\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dictionaries/{kind}/{id}":{"patch":{"operationId":"customers_patch_customers_dictionaries_kind_id","summary":"Update dictionary entry","description":"Updates value, label, color, or icon for an existing customer dictionary entry.","tags":["Customers"],"parameters":[{"name":"kind","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchParameters0Schema"}},{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchParameters1Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Updated dictionary entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Duplicate value conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/:kind/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_dictionaries_kind_id","summary":"Delete dictionary entry","description":"Removes a customer dictionary entry by identifier.","tags":["Customers"],"parameters":[{"name":"kind","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteParameters0Schema"}},{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteParameters1Schema"}}],"responses":{"200":{"description":"Entry deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"success":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Entry is in use and cannot be deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/:kind/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/dictionaries/{kind}":{"get":{"operationId":"customers_get_customers_dictionaries_kind","summary":"List dictionary entries","description":"Returns dictionary entries for the requested kind within the currently selected organization.","tags":["Customers"],"parameters":[{"name":"kind","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetParameters0Schema"}}],"responses":{"200":{"description":"Dictionary entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null}]}}}},"400":{"description":"Failed to resolve dictionary context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/:kind\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_dictionaries_kind","summary":"Create or override dictionary entry","description":"Creates a dictionary entry (or updates the existing entry for the same value) within the current organization scope.","tags":["Customers"],"parameters":[{"name":"kind","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchema"},"example":{"value":"string"}}}},"responses":{"200":{"description":"Dictionary entry updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null}}}},"201":{"description":"Dictionary entry created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Duplicate value conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/dictionaries/:kind\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"value\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/customers/interactions/{id}/visibility":{"patch":{"operationId":"customers_patch_customers_interactions_id_visibility","summary":"Flip an email interaction visibility (private ↔ shared)","tags":["Customers","Email"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchParameters0Schema"}}],"responses":{"200":{"description":"Updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Email not found or not visible to caller","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses404ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses422ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/customers/interactions/:id/visibility\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}/companies/{linkId}":{"patch":{"operationId":"customers_patch_customers_people_id_companies_linkId","summary":"Update a linked company for a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchParameters0Schema"}},{"name":"linkId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchParameters1Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Updated company link","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"result":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/customers/people/:id/companies/:linkId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_people_id_companies_linkId","summary":"Remove a linked company from a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteParameters0Schema"}},{"name":"linkId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteParameters1Schema"}}],"responses":{"200":{"description":"Deletion result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/people/:id/companies/:linkId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}/companies/enriched":{"get":{"operationId":"customers_get_customers_people_id_companies_enriched","summary":"Get enriched company data for a person's linked companies","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters0Schema"}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters3Schema"},"example":"string"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters4Schema"},"example":"name-asc"}],"responses":{"200":{"description":"Enriched company rows with profile, billing, tags, deals and more","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"linkId":"00000000-0000-4000-8000-000000000000","companyId":"00000000-0000-4000-8000-000000000000","displayName":"string","isPrimary":true,"subtitle":null,"profile":null,"billing":null,"primaryAddress":null,"tags":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","color":null}],"roles":[{"id":"00000000-0000-4000-8000-000000000000","roleValue":"string"}],"activeDeal":null,"lastContactAt":null,"clv":null,"status":null,"lifecycleStage":null,"temperature":null,"renewalQuarter":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/:id/companies/enriched?page=1&pageSize=20&sort=name-asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}/companies":{"get":{"operationId":"customers_get_customers_people_id_companies","summary":"List linked companies for a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetParameters0Schema"}}],"responses":{"200":{"description":"Linked company rows","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","companyId":"00000000-0000-4000-8000-000000000000","displayName":"string","isPrimary":true}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/:id/companies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_people_id_companies","summary":"Link a company to a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchema"},"example":{"companyId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Linked company row","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"result":{"id":"00000000-0000-4000-8000-000000000000","companyId":"00000000-0000-4000-8000-000000000000","displayName":"string","isPrimary":true}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/people/:id/companies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"companyId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/customers/people/{id}/email-threads":{"get":{"operationId":"customers_get_customers_people_id_email_threads","summary":"List a Person's email threads (Gmail-style conversation grouping)","tags":["Customers","Email"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetParameters0Schema"}}],"responses":{"200":{"description":"Email threads for the person, grouped by conversation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid person id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Missing customers.people.view feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetResponses403ContentApplicationJsonSchema"}}}},"404":{"description":"Person not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailThreadsGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/:id/email-threads\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}/emails":{"post":{"operationId":"customers_post_customers_people_id_emails","summary":"Compose + send an email anchored to a Person","tags":["Customers","Email"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostParameters0Schema"}}],"responses":{"200":{"description":"Email queued for send","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid person id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Missing customers.email.compose feature or mutation guard rejection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses403ContentApplicationJsonSchema"}}}},"404":{"description":"Person or channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Channel not connected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses422ContentApplicationJsonSchema"}}}},"500":{"description":"Send failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdEmailsPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/people/:id/emails\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}/roles":{"get":{"operationId":"customers_get_customers_people_id_roles","summary":"List roles for a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role assignments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","entityType":"company","entityId":"00000000-0000-4000-8000-000000000000","userId":"00000000-0000-4000-8000-000000000000","userName":null,"userEmail":null,"userPhone":null,"roleType":"string","createdAt":"string","updatedAt":"string"}]}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/00000000-0000-4000-8000-000000000000/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"customers_post_customers_people_id_roles","summary":"Assign a role to a person","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchema"},"example":{"roleType":"string","userId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"201":{"description":"Role created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Role already assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/customers/people/00000000-0000-4000-8000-000000000000/roles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"roleType\\\": \\\"string\\\",\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"customers_put_customers_people_id_roles","summary":"Update a person role assignment","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutRequestBodyContentApplicationJsonSchema"},"example":{"userId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Role updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/customers/people/00000000-0000-4000-8000-000000000000/roles?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_people_id_roles","summary":"Remove a person role assignment","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"roleId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Role deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/customers/people/00000000-0000-4000-8000-000000000000/roles?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/people/{id}":{"get":{"operationId":"customers_get_customers_people_id","summary":"Fetch person with related data","description":"Returns a person customer record with optional related resources such as addresses, comments, activities, interactions, deals, and todos.","tags":["Customers"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetParameters0Schema"}},{"name":"include","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetParameters1Schema"},"example":"string","description":"Comma-separated list of relations to include (addresses, comments, activities, interactions, deals, todos)."}],"responses":{"200":{"description":"Person detail payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchema"},"example":{"interactionMode":"canonical","person":{"id":"00000000-0000-4000-8000-000000000000","displayName":null,"description":null,"ownerUserId":null,"primaryEmail":null,"primaryPhone":null,"status":null,"lifecycleStage":null,"source":null,"nextInteractionAt":null,"nextInteractionName":null,"nextInteractionRefId":null,"nextInteractionIcon":null,"nextInteractionColor":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"},"profile":null,"customFields":{},"tags":[{"id":"00000000-0000-4000-8000-000000000000","label":"string","color":null}],"addresses":[{"id":"00000000-0000-4000-8000-000000000000","name":null,"purpose":null,"addressLine1":null,"addressLine2":null,"buildingNumber":null,"flatNumber":null,"city":null,"region":null,"postalCode":null,"country":null,"latitude":null,"longitude":null,"isPrimary":null,"createdAt":"string"}],"comments":[{"id":"00000000-0000-4000-8000-000000000000","body":null,"authorUserId":null,"authorName":null,"authorEmail":null,"dealId":null,"createdAt":"string","appearanceIcon":null,"appearanceColor":null}],"activities":[{"id":"00000000-0000-4000-8000-000000000000","activityType":"string","subject":null,"body":null,"occurredAt":null,"dealId":null,"authorUserId":null,"authorName":null,"authorEmail":null,"createdAt":"string","appearanceIcon":null,"appearanceColor":null}],"interactions":[{"id":"00000000-0000-4000-8000-000000000000","entityId":null,"interactionType":"string","title":null,"body":null,"status":"string","scheduledAt":null,"occurredAt":null,"priority":null,"authorUserId":null,"ownerUserId":null,"dealId":null,"organizationId":null,"tenantId":null,"authorName":null,"authorEmail":null,"dealTitle":null,"customValues":null,"appearanceIcon":null,"appearanceColor":null,"source":null,"createdAt":"string","updatedAt":"string"}],"deals":[{"id":"00000000-0000-4000-8000-000000000000","title":null,"status":null,"pipelineStage":null,"valueAmount":null,"valueCurrency":null,"probability":null,"expectedCloseAt":null,"ownerUserId":null,"source":null,"closureOutcome":null,"lossReasonId":null,"lossNotes":null,"createdAt":"string","updatedAt":"string"}],"todos":[{"id":"00000000-0000-4000-8000-000000000000","todoId":"00000000-0000-4000-8000-000000000000","todoSource":"string","createdAt":"string","createdByUserId":null,"title":null,"isDone":null,"priority":null,"severity":null,"description":null,"dueAt":null,"todoOrganizationId":null,"customValues":null}],"isPrimary":true,"companies":[{"id":"00000000-0000-4000-8000-000000000000","displayName":"string","isPrimary":true}],"viewer":{"userId":null,"name":null,"email":null}}}}},"400":{"description":"Invalid identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden — caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Person not found, or its organization is not in the caller’s scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/customers/people/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sales/adjustment-kinds":{"get":{"operationId":"sales_get_sales_adjustment_kinds","summary":"List sales adjustment kinds","description":"Returns a paginated collection of sales adjustment kinds that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated sales adjustment kinds","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/adjustment-kinds?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_adjustment_kinds","summary":"Create sales adjustment kind","description":"Creates an adjustment kind.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Creates an adjustment kind."},"responses":{"201":{"description":"Sales adjustment kind created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/adjustment-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_adjustment_kinds","summary":"Update sales adjustment kind","description":"Updates an adjustment kind.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Fields to update on the target sales adjustment kind."},"responses":{"200":{"description":"Sales adjustment kind updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/adjustment-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_adjustment_kinds","summary":"Delete sales adjustment kind","description":"Deletes an adjustment kind.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Deletes an adjustment kind."},"responses":{"200":{"description":"Sales adjustment kind deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/adjustment-kinds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/sales/channels":{"get":{"operationId":"sales_get_sales_channels","summary":"List sales channels","description":"Manage sales channels to segment orders and pricing across marketplaces or stores.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters5Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters7Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetParameters8Schema"},"example":true}],"responses":{"200":{"description":"Paginated sales channels","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":null,"description":null,"statusEntryId":null,"isActive":true,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/channels?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_channels","summary":"Create sales channel","description":"Creates a new sales channel.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string"}}},"description":"Payload describing the sales channel to create."},"responses":{"201":{"description":"Sales channel created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_channels","summary":"Update sales channel","description":"Updates an existing sales channel by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","code":"string"}}},"description":"Fields to update on the target sales channel."},"responses":{"200":{"description":"Sales channel updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_channels","summary":"Delete sales channel","description":"Deletes a sales channel identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Sales channel deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/credit-memos":{"get":{"operationId":"sales_get_sales_credit_memos","summary":"List creditmemos","description":"Returns a paginated collection of creditmemos that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"invoiceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated creditmemos","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","creditMemoNumber":"string","status":null,"reason":null,"issueDate":null,"currencyCode":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/credit-memos?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_credit_memos","summary":"Create creditmemo","description":"Create a new credit memo","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","currencyCode":"string"}}},"description":"Create a new credit memo"},"responses":{"201":{"description":"CreditMemo created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/credit-memos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_credit_memos","summary":"Update creditmemo","description":"Update a credit memo","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target creditmemo."},"responses":{"200":{"description":"CreditMemo updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses200ContentApplicationJsonSchema"},"example":{"creditMemoId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/credit-memos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_credit_memos","summary":"Delete creditmemo","description":"Delete a credit memo","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Delete a credit memo"},"responses":{"200":{"description":"CreditMemo deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses200ContentApplicationJsonSchema"},"example":{"creditMemoId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/credit-memos\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/dashboard/widgets/new-orders":{"get":{"operationId":"sales_get_sales_dashboard_widgets_new_orders","summary":"Fetch recently created sales orders","description":"Fetches recently created sales orders for the dashboard widget with a configurable date period.","tags":["Sales"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters0Schema"},"example":1},{"name":"datePeriod","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters1Schema"},"example":"last24h"},{"name":"customFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters2Schema"},"example":"string"},{"name":"customTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters3Schema"},"example":"string"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"List of recent orders","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","orderNumber":"string","status":null,"fulfillmentStatus":null,"paymentStatus":null,"customerName":null,"customerEntityId":null,"netAmount":"string","grossAmount":"string","currency":null,"createdAt":"string"}],"total":1,"dateRange":{"from":"string","to":"string"}}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/dashboard/widgets/new-orders?limit=5&datePeriod=last24h\" \\\n  -H \"Accept: application/json\""}]}},"/sales/dashboard/widgets/new-quotes":{"get":{"operationId":"sales_get_sales_dashboard_widgets_new_quotes","summary":"Fetch recently created sales quotes","description":"Fetches recently created sales quotes for the dashboard widget with a configurable date period.","tags":["Sales"],"parameters":[{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters0Schema"},"example":1},{"name":"datePeriod","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters1Schema"},"example":"last24h"},{"name":"customFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters2Schema"},"example":"string"},{"name":"customTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters3Schema"},"example":"string"},{"name":"tenantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"List of recent quotes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","quoteNumber":"string","status":null,"customerName":null,"customerEntityId":null,"validFrom":null,"validUntil":null,"netAmount":"string","grossAmount":"string","currency":null,"createdAt":"string","convertedOrderId":null}],"total":1,"dateRange":{"from":"string","to":"string"}}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Widget failed to load","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/dashboard/widgets/new-quotes?limit=5&datePeriod=last24h\" \\\n  -H \"Accept: application/json\""}]}},"/sales/delivery-windows":{"get":{"operationId":"sales_get_sales_delivery_windows","summary":"List delivery windows","description":"Define delivery windows to communicate lead times and cut-off rules for sales orders.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters2Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters5Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters6Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated delivery windows","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":null,"description":null,"leadTimeDays":null,"cutoffTime":null,"timezone":null,"isActive":true,"metadata":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/delivery-windows?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_delivery_windows","summary":"Create delivery window","description":"Creates a new delivery window.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string"}}},"description":"Payload describing the delivery window to create."},"responses":{"201":{"description":"Delivery window created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/delivery-windows\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_delivery_windows","summary":"Update delivery window","description":"Updates an existing delivery window by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target delivery window."},"responses":{"200":{"description":"Delivery window updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/delivery-windows\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_delivery_windows","summary":"Delete delivery window","description":"Deletes a delivery window identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Delivery window deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/delivery-windows\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/document-addresses":{"get":{"operationId":"sales_get_sales_document_addresses","summary":"List document addresss","description":"Returns a paginated collection of document addresss that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters1Schema"},"example":1},{"name":"documentId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"documentKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters3Schema"},"example":"order"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated document addresss","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","document_id":"00000000-0000-4000-8000-000000000000","document_kind":"order","customer_address_id":null,"name":null,"purpose":null,"company_name":null,"address_line1":"string","address_line2":null,"building_number":null,"flat_number":null,"city":null,"region":null,"postal_code":null,"country":null,"latitude":null,"longitude":null,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/document-addresses?page=1&pageSize=50&documentId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_document_addresses","summary":"Create document address","description":"Creates a sales document address linked to an order or quote.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","documentId":"00000000-0000-4000-8000-000000000000","documentKind":"order","name":null,"purpose":null,"companyName":null,"addressLine1":"string","addressLine2":null,"city":null,"region":null,"postalCode":null,"country":null,"buildingNumber":null,"flatNumber":null,"latitude":null,"longitude":null}}},"description":"Creates a sales document address linked to an order or quote."},"responses":{"201":{"description":"Document address created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/document-addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentKind\\\": \\\"order\\\",\n  \\\"name\\\": null,\n  \\\"purpose\\\": null,\n  \\\"companyName\\\": null,\n  \\\"addressLine1\\\": \\\"string\\\",\n  \\\"addressLine2\\\": null,\n  \\\"city\\\": null,\n  \\\"region\\\": null,\n  \\\"postalCode\\\": null,\n  \\\"country\\\": null,\n  \\\"buildingNumber\\\": null,\n  \\\"flatNumber\\\": null,\n  \\\"latitude\\\": null,\n  \\\"longitude\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_document_addresses","summary":"Update document address","description":"Updates a sales document address.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","id":"00000000-0000-4000-8000-000000000000","documentId":"00000000-0000-4000-8000-000000000000","documentKind":"order","name":null,"purpose":null,"companyName":null,"addressLine1":"string","addressLine2":null,"city":null,"region":null,"postalCode":null,"country":null,"buildingNumber":null,"flatNumber":null,"latitude":null,"longitude":null}}},"description":"Fields to update on the target document address."},"responses":{"200":{"description":"Document address updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/document-addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentKind\\\": \\\"order\\\",\n  \\\"name\\\": null,\n  \\\"purpose\\\": null,\n  \\\"companyName\\\": null,\n  \\\"addressLine1\\\": \\\"string\\\",\n  \\\"addressLine2\\\": null,\n  \\\"city\\\": null,\n  \\\"region\\\": null,\n  \\\"postalCode\\\": null,\n  \\\"country\\\": null,\n  \\\"buildingNumber\\\": null,\n  \\\"flatNumber\\\": null,\n  \\\"latitude\\\": null,\n  \\\"longitude\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_document_addresses","summary":"Delete document address","description":"Deletes a sales document address.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","documentId":"00000000-0000-4000-8000-000000000000","documentKind":"order"}}},"description":"Deletes a sales document address."},"responses":{"200":{"description":"Document address deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/document-addresses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"documentKind\\\": \\\"order\\\"\n}\""}],"x-require-auth":true}},"/sales/document-history":{"get":{"operationId":"sales_get_sales_document_history","summary":"List history entries for an order or quote","tags":["Sales"],"parameters":[{"name":"kind","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters0Schema"},"example":"order"},{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters2Schema"},"example":1},{"name":"before","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters3Schema"},"example":"string"},{"name":"after","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters4Schema"},"example":"string"},{"name":"types","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetParameters5Schema"},"example":"string"}],"responses":{"200":{"description":"History entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","occurredAt":"string","kind":"status","action":"string","actor":{"id":null,"label":"string"},"source":"action_log"}]}}}},"400":{"description":"Invalid query","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Document not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/document-history?kind=order&id=00000000-0000-4000-8000-000000000000&limit=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sales/document-numbers":{"post":{"operationId":"sales_post_sales_document_numbers","summary":"Generate next number","description":"Generates the next sales order or quote number using configured formatting rules.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","kind":"order"}}}},"responses":{"200":{"description":"Generated number","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchema"},"example":{"number":"string","format":"string","sequence":1}}}},"400":{"description":"Invalid input or scope missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/document-numbers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"kind\\\": \\\"order\\\"\n}\""}],"x-require-auth":true}},"/sales/invoices":{"get":{"operationId":"sales_get_sales_invoices","summary":"List invoices","description":"Returns a paginated collection of invoices that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated invoices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","invoiceNumber":"string","status":null,"issueDate":null,"dueDate":null,"currencyCode":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/invoices?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_invoices","summary":"Create invoice","description":"Create a new invoice","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","currencyCode":"string"}}},"description":"Create a new invoice"},"responses":{"201":{"description":"Invoice created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_invoices","summary":"Update invoice","description":"Update an invoice","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target invoice."},"responses":{"200":{"description":"Invoice updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses200ContentApplicationJsonSchema"},"example":{"invoiceId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_invoices","summary":"Delete invoice","description":"Delete an invoice","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Delete an invoice"},"responses":{"200":{"description":"Invoice deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses200ContentApplicationJsonSchema"},"example":{"invoiceId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/notes":{"get":{"operationId":"sales_get_sales_notes","summary":"List sales notes","description":"Returns a paginated collection of sales notes that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters1Schema"},"example":1},{"name":"contextType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters2Schema"},"example":"order"},{"name":"contextId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"quoteId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated sales notes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","context_type":"order","context_id":"00000000-0000-4000-8000-000000000000","order_id":null,"quote_id":null,"body":null,"author_user_id":null,"appearance_icon":null,"appearance_color":null,"organization_id":null,"tenant_id":null,"created_at":null,"updated_at":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/notes?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_notes","summary":"Create sales note","description":"Creates a note attached to a sales document.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","contextType":"order","contextId":"00000000-0000-4000-8000-000000000000","body":"string","appearanceIcon":null,"appearanceColor":null}}},"description":"Creates a note attached to a sales document."},"responses":{"201":{"description":"Sales note created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"authorUserId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/notes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"contextType\\\": \\\"order\\\",\n  \\\"contextId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"body\\\": \\\"string\\\",\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_notes","summary":"Update sales note","description":"Updates a sales note.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","appearanceIcon":null,"appearanceColor":null}}},"description":"Fields to update on the target sales note."},"responses":{"200":{"description":"Sales note updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/notes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"appearanceIcon\\\": null,\n  \\\"appearanceColor\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_notes","summary":"Delete sales note","description":"Deletes a sales note.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a sales note."},"responses":{"200":{"description":"Sales note deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/notes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/order-adjustments":{"get":{"operationId":"sales_get_sales_order_adjustments","summary":"List order adjustments","description":"Returns a paginated collection of order adjustments that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters1Schema"},"example":1},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated order adjustments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","order_id":"00000000-0000-4000-8000-000000000000","order_line_id":null,"scope":"string","kind":"string","code":null,"label":null,"calculator_key":null,"promotion_id":null,"rate":1,"amount_net":1,"amount_gross":1,"currency_code":null,"metadata":null,"position":1,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/order-adjustments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_order_adjustments","summary":"Create order adjustment","description":"Creates an order adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}},"description":"Creates an order adjustment and recalculates totals."},"responses":{"201":{"description":"Order adjustment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"orderId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/order-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_order_adjustments","summary":"Update order adjustment","description":"Updates an order adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target order adjustment."},"responses":{"200":{"description":"Order adjustment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchema"},"example":{"id":null,"orderId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/order-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_order_adjustments","summary":"Delete order adjustment","description":"Deletes an order adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an order adjustment and recalculates totals."},"responses":{"200":{"description":"Order adjustment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/order-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/order-line-statuses":{"get":{"operationId":"sales_get_sales_order_line_statuses","summary":"List order line statuses","description":"Manage custom order line statuses available for sales documents.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated order line statuses","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/order-line-statuses?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_order_line_statuses","summary":"Create order line status","description":"Creates a new order line status.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","value":"string","color":null,"icon":null}}},"description":"Payload describing the order line status to create."},"responses":{"201":{"description":"Order line status created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/order-line-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_order_line_statuses","summary":"Update order line status","description":"Updates an existing order line status by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","color":null,"icon":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target order line status."},"responses":{"200":{"description":"Order line status updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/order-line-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_order_line_statuses","summary":"Delete order line status","description":"Deletes a order line status identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Order line status deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/order-line-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/order-lines":{"get":{"operationId":"sales_get_sales_order_lines","summary":"List order lines","description":"Returns a paginated collection of order lines that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated order lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","order_id":"00000000-0000-4000-8000-000000000000","line_number":1,"kind":"string","status_entry_id":null,"status":null,"product_id":null,"product_variant_id":null,"catalog_snapshot":null,"name":null,"description":null,"comment":null,"quantity":1,"quantity_unit":null,"normalized_quantity":1,"normalized_unit":null,"uom_snapshot":null,"currency_code":"string","unit_price_net":1,"unit_price_gross":1,"discount_amount":1,"discount_percent":1,"tax_rate":1,"tax_amount":1,"total_net_amount":1,"total_gross_amount":1,"configuration":null,"promotion_code":null,"promotion_snapshot":null,"metadata":null,"custom_field_set_id":null,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/order-lines?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_order_lines","summary":"Create order line","description":"Creates an order line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","uomSnapshot":null,"quantity":1,"normalizedUnit":null}}},"description":"Creates an order line and recalculates totals."},"responses":{"201":{"description":"Order line created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"orderId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/order-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"uomSnapshot\\\": null,\n  \\\"quantity\\\": 1,\n  \\\"normalizedUnit\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_order_lines","summary":"Update order line","description":"Updates an order line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","uomSnapshot":null,"quantity":1,"normalizedUnit":null}}},"description":"Fields to update on the target order line."},"responses":{"200":{"description":"Order line updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchema"},"example":{"id":null,"orderId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/order-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"uomSnapshot\\\": null,\n  \\\"quantity\\\": 1,\n  \\\"normalizedUnit\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_order_lines","summary":"Delete order line","description":"Deletes an order line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an order line and recalculates totals."},"responses":{"200":{"description":"Order line deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/order-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/order-statuses":{"get":{"operationId":"sales_get_sales_order_statuses","summary":"List order statuses","description":"Manage the lifecycle states available for sales orders.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated order statuses","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/order-statuses?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_order_statuses","summary":"Create order status","description":"Creates a new order status.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","value":"string","color":null,"icon":null}}},"description":"Payload describing the order status to create."},"responses":{"201":{"description":"Order status created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/order-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_order_statuses","summary":"Update order status","description":"Updates an existing order status by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","color":null,"icon":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target order status."},"responses":{"200":{"description":"Order status updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/order-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_order_statuses","summary":"Delete order status","description":"Deletes a order status identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Order status deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/order-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/orders":{"get":{"operationId":"sales_get_sales_orders","summary":"List orders","description":"Returns a paginated collection of orders that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters6Schema"},"example":"string","description":"Comma-separated sales channel uuids; matches documents on any of them. Capped at 200 ids, malformed entries are dropped. Ignored when channelId is supplied; combines with channelIdsEmpty."},{"name":"channelIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters7Schema"},"example":"string","description":"Boolean token; matches documents with no sales channel. Ignored when channelId is supplied; combines with channelIds."},{"name":"lineItemCountMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters8Schema"},"example":1},{"name":"lineItemCountMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters9Schema"},"example":1},{"name":"totalNetMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters10Schema"},"example":1},{"name":"totalNetMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters11Schema"},"example":1},{"name":"totalGrossMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters12Schema"},"example":1},{"name":"totalGrossMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters13Schema"},"example":1},{"name":"dateFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters14Schema"},"example":"string"},{"name":"dateTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters15Schema"},"example":"string"},{"name":"tagIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters16Schema"},"example":"string"},{"name":"tagIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters17Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters18Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters19Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters20Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetParameters21Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated orders","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","orderNumber":null,"status":null,"statusEntryId":null,"customerEntityId":null,"customerContactId":null,"billingAddressId":null,"shippingAddressId":null,"customerReference":null,"externalReference":null,"comment":null,"placedAt":null,"expectedDeliveryAt":null,"customerSnapshot":null,"billingAddressSnapshot":null,"shippingAddressSnapshot":null,"shippingMethodId":null,"shippingMethodCode":null,"shippingMethodSnapshot":null,"paymentMethodId":null,"paymentMethodCode":null,"paymentMethodSnapshot":null,"currencyCode":null,"channelId":null,"channelName":null,"channelCode":null,"organizationId":null,"tenantId":null,"validFrom":null,"validUntil":null,"lineItemCount":null,"subtotalNetAmount":null,"subtotalGrossAmount":null,"discountTotalAmount":null,"taxTotalAmount":null,"shippingNetAmount":null,"shippingGrossAmount":null,"surchargeTotalAmount":null,"grandTotalNetAmount":null,"grandTotalGrossAmount":null,"paidTotalAmount":null,"refundedTotalAmount":null,"outstandingAmount":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/orders?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_orders","summary":"Create order","description":"Creates a new sales order. paidTotalAmount, refundedTotalAmount, and outstandingAmount are deprecated compatibility inputs: supplied values are ignored and reported in warnings. Record payments through sales.payments.create or POST /api/sales/payments.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","lines":[{"currencyCode":"string","uomSnapshot":null,"quantity":1,"normalizedUnit":null}]}}},"description":"Creates a new sales order. paidTotalAmount, refundedTotalAmount, and outstandingAmount are deprecated compatibility inputs: supplied values are ignored and reported in warnings. Record payments through sales.payments.create or POST /api/sales/payments."},"responses":{"201":{"description":"Order created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"lines\\\": [\n    {\n      \\\"currencyCode\\\": \\\"string\\\",\n      \\\"uomSnapshot\\\": null,\n      \\\"quantity\\\": 1,\n      \\\"normalizedUnit\\\": null\n    }\n  ]\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_orders","summary":"Order management","tags":["Sales"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_orders","summary":"Delete order","description":"Deletes a sales order.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a sales order."},"responses":{"200":{"description":"Order deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/payment-methods":{"get":{"operationId":"sales_get_sales_payment_methods","summary":"List payment methods","description":"Configure payment options that can be assigned to sales orders and invoices.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters2Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters5Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters6Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated payment methods","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":"string","description":null,"providerKey":null,"terms":null,"isActive":true,"metadata":null,"providerSettings":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/payment-methods?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_payment_methods","summary":"Create payment method","description":"Creates a new payment method.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string"}}},"description":"Payload describing the payment method to create."},"responses":{"201":{"description":"Payment method created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/payment-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_payment_methods","summary":"Update payment method","description":"Updates an existing payment method by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target payment method."},"responses":{"200":{"description":"Payment method updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/payment-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_payment_methods","summary":"Delete payment method","description":"Deletes a payment method identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Payment method deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/payment-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/payment-statuses":{"get":{"operationId":"sales_get_sales_payment_statuses","summary":"List payment statuses","description":"Manage the lifecycle states available for payments.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated payment statuses","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/payment-statuses?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_payment_statuses","summary":"Create payment status","description":"Creates a new payment status.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","value":"string","color":null,"icon":null}}},"description":"Payload describing the payment status to create."},"responses":{"201":{"description":"Payment status created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/payment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_payment_statuses","summary":"Update payment status","description":"Updates an existing payment status by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","color":null,"icon":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target payment status."},"responses":{"200":{"description":"Payment status updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/payment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_payment_statuses","summary":"Delete payment status","description":"Deletes a payment status identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Payment status deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/payment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/payments":{"get":{"operationId":"sales_get_sales_payments","summary":"List payments","description":"Returns a paginated collection of payments that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters1Schema"},"example":1},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"paymentMethodId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated payments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","order_id":null,"payment_method_id":null,"payment_method_name":null,"payment_method_code":null,"payment_reference":null,"status_entry_id":null,"status":null,"status_label":null,"amount":1,"currency_code":"string","captured_amount":null,"refunded_amount":null,"received_at":null,"captured_at":null,"custom_field_set_id":null,"customFieldSetId":null,"custom_values":null,"customValues":null,"custom_fields":null,"customFields":null,"metadata":null,"created_at":"string","updated_at":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/payments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_payments","summary":"Create payment","description":"Creates a payment for a sales order.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","amount":1,"currencyCode":"string"}}},"description":"Creates a payment for a sales order."},"responses":{"201":{"description":"Payment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"orderTotals":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"amount\\\": 1,\n  \\\"currencyCode\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_payments","summary":"Update payment","description":"Updates a payment.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target payment."},"responses":{"200":{"description":"Payment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchema"},"example":{"id":null,"orderTotals":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_payments","summary":"Delete payment","description":"Deletes a payment.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a payment."},"responses":{"200":{"description":"Payment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"id":null,"orderTotals":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/price-kinds":{"get":{"operationId":"sales_get_sales_price_kinds","summary":"List price kinds","description":"Lists available price kinds that can be used when pricing sales channels and offers.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetParameters2Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetParameters3Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated price kinds","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","currency_code":null,"display_mode":"string","is_active":true}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/price-kinds?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sales/quote-adjustments":{"get":{"operationId":"sales_get_sales_quote_adjustments","summary":"List quote adjustments","description":"Returns a paginated collection of quote adjustments that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters1Schema"},"example":1},{"name":"quoteId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated quote adjustments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","quote_id":"00000000-0000-4000-8000-000000000000","quote_line_id":null,"scope":"string","kind":"string","code":null,"label":null,"calculator_key":null,"promotion_id":null,"rate":1,"amount_net":1,"amount_gross":1,"currency_code":null,"metadata":null,"position":1,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/quote-adjustments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_quote_adjustments","summary":"Create quote adjustment","description":"Creates a quote adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000"}}},"description":"Creates a quote adjustment and recalculates totals."},"responses":{"201":{"description":"Quote adjustment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"quoteId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quote-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_quote_adjustments","summary":"Update quote adjustment","description":"Updates a quote adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target quote adjustment."},"responses":{"200":{"description":"Quote adjustment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchema"},"example":{"id":null,"quoteId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/quote-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_quote_adjustments","summary":"Delete quote adjustment","description":"Deletes a quote adjustment and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a quote adjustment and recalculates totals."},"responses":{"200":{"description":"Quote adjustment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/quote-adjustments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/quote-lines":{"get":{"operationId":"sales_get_sales_quote_lines","summary":"List quote lines","description":"Returns a paginated collection of quote lines that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"quoteId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated quote lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","quote_id":"00000000-0000-4000-8000-000000000000","line_number":1,"kind":"string","status_entry_id":null,"status":null,"product_id":null,"product_variant_id":null,"catalog_snapshot":null,"name":null,"description":null,"comment":null,"quantity":1,"quantity_unit":null,"normalized_quantity":1,"normalized_unit":null,"uom_snapshot":null,"currency_code":"string","unit_price_net":1,"unit_price_gross":1,"discount_amount":1,"discount_percent":1,"tax_rate":1,"tax_amount":1,"total_net_amount":1,"total_gross_amount":1,"configuration":null,"promotion_code":null,"promotion_snapshot":null,"metadata":null,"custom_field_set_id":null,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/quote-lines?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_quote_lines","summary":"Create quote line","description":"Creates a quote line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","uomSnapshot":null,"quantity":1,"normalizedUnit":null}}},"description":"Creates a quote line and recalculates totals."},"responses":{"201":{"description":"Quote line created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"quoteId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"uomSnapshot\\\": null,\n  \\\"quantity\\\": 1,\n  \\\"normalizedUnit\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_quote_lines","summary":"Update quote line","description":"Updates a quote line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000","currencyCode":"string","uomSnapshot":null,"quantity":1,"normalizedUnit":null}}},"description":"Fields to update on the target quote line."},"responses":{"200":{"description":"Quote line updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchema"},"example":{"id":null,"quoteId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\",\n  \\\"uomSnapshot\\\": null,\n  \\\"quantity\\\": 1,\n  \\\"normalizedUnit\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_quote_lines","summary":"Delete quote line","description":"Deletes a quote line and recalculates totals.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a quote line and recalculates totals."},"responses":{"200":{"description":"Quote line deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/quotes/accept":{"post":{"operationId":"sales_post_sales_quotes_accept","summary":"Accept quote and convert to order","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostRequestBodyContentApplicationJsonSchema"},"example":{"token":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Quote accepted and order created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchema"},"example":{"orderId":"00000000-0000-4000-8000-000000000000","orderNumber":"string"}}}},"400":{"description":"Invalid or expired quote","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Cross-site request rejected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Quote not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"429":{"description":"Too many requests","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses429ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quotes/accept\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"token\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}]}},"/sales/quotes/convert":{"post":{"operationId":"sales_post_sales_quotes_convert","summary":"Convert quote","description":"Creates a sales order from a quote and removes the original quote record.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Conversion succeeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses200ContentApplicationJsonSchema"},"example":{"orderId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Conflict detected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"423":{"description":"Record locked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quotes/convert\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/quotes":{"get":{"operationId":"sales_get_sales_quotes","summary":"List quotes","description":"Returns a paginated collection of quotes that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters6Schema"},"example":"string","description":"Comma-separated sales channel uuids; matches documents on any of them. Capped at 200 ids, malformed entries are dropped. Ignored when channelId is supplied; combines with channelIdsEmpty."},{"name":"channelIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters7Schema"},"example":"string","description":"Boolean token; matches documents with no sales channel. Ignored when channelId is supplied; combines with channelIds."},{"name":"lineItemCountMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters8Schema"},"example":1},{"name":"lineItemCountMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters9Schema"},"example":1},{"name":"totalNetMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters10Schema"},"example":1},{"name":"totalNetMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters11Schema"},"example":1},{"name":"totalGrossMin","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters12Schema"},"example":1},{"name":"totalGrossMax","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters13Schema"},"example":1},{"name":"dateFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters14Schema"},"example":"string"},{"name":"dateTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters15Schema"},"example":"string"},{"name":"tagIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters16Schema"},"example":"string"},{"name":"tagIdsEmpty","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters17Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters18Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters19Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters20Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetParameters21Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated quotes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","quoteNumber":null,"status":null,"statusEntryId":null,"customerEntityId":null,"customerContactId":null,"billingAddressId":null,"shippingAddressId":null,"customerReference":null,"externalReference":null,"comment":null,"placedAt":null,"expectedDeliveryAt":null,"customerSnapshot":null,"billingAddressSnapshot":null,"shippingAddressSnapshot":null,"shippingMethodId":null,"shippingMethodCode":null,"shippingMethodSnapshot":null,"paymentMethodId":null,"paymentMethodCode":null,"paymentMethodSnapshot":null,"currencyCode":null,"channelId":null,"channelName":null,"channelCode":null,"organizationId":null,"tenantId":null,"validFrom":null,"validUntil":null,"lineItemCount":null,"subtotalNetAmount":null,"subtotalGrossAmount":null,"discountTotalAmount":null,"taxTotalAmount":null,"shippingNetAmount":null,"shippingGrossAmount":null,"surchargeTotalAmount":null,"grandTotalNetAmount":null,"grandTotalGrossAmount":null,"paidTotalAmount":null,"refundedTotalAmount":null,"outstandingAmount":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/quotes?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_quotes","summary":"Create quote","description":"Creates a new sales quote.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","currencyCode":"string"}}},"description":"Creates a new sales quote."},"responses":{"201":{"description":"Quote created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"currencyCode\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_quotes","summary":"Quote management","tags":["Sales"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_quotes","summary":"Delete quote","description":"Deletes a sales quote.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a sales quote."},"responses":{"200":{"description":"Quote deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/quotes/send":{"post":{"operationId":"sales_post_sales_quotes_send","summary":"Send quote","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","validForDays":14}}}},"responses":{"200":{"description":"Email queued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Conflict detected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"423":{"description":"Record locked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/quotes/send\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validForDays\\\": 14\n}\""}],"x-require-auth":true}},"/sales/returns":{"get":{"operationId":"sales_get_sales_returns","summary":"List returns","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetParameters1Schema"},"example":1},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetParameters4Schema"},"example":"asc"}],"responses":{"200":{"description":"Returns list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","order_id":"00000000-0000-4000-8000-000000000000","return_number":"string","status_entry_id":null,"status":null,"reason":null,"notes":null,"returned_at":null,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/returns?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_returns","summary":"Create return","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","lines":[{"orderLineId":"00000000-0000-4000-8000-000000000000","quantity":1}]}}}},"responses":{"201":{"description":"Return created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/returns\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"lines\\\": [\n    {\n      \\\"orderLineId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"quantity\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_returns","summary":"Update return","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Return updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/returns\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_returns","summary":"Delete return","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Return deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/returns\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/settings/document-numbers":{"get":{"operationId":"sales_get_sales_settings_document_numbers","summary":"Get document numbering settings","tags":["Sales"],"parameters":[],"responses":{"200":{"description":"Current numbering formats and counters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchema"},"example":{"orderNumberFormat":"string","quoteNumberFormat":"string","nextOrderNumber":1,"nextQuoteNumber":1}}}},"400":{"description":"Missing scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/settings/document-numbers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_settings_document_numbers","summary":"Update document numbering settings","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderNumberFormat":"string","quoteNumberFormat":"string","orderCustomerEditableStatuses":null,"orderAddressEditableStatuses":null}}}},"responses":{"200":{"description":"Updated numbering formats and counters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchema"},"example":{"orderNumberFormat":"string","quoteNumberFormat":"string","nextOrderNumber":1,"nextQuoteNumber":1}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/settings/document-numbers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderNumberFormat\\\": \\\"string\\\",\n  \\\"quoteNumberFormat\\\": \\\"string\\\",\n  \\\"orderCustomerEditableStatuses\\\": null,\n  \\\"orderAddressEditableStatuses\\\": null\n}\""}],"x-require-auth":true}},"/sales/settings/order-editing":{"get":{"operationId":"sales_get_sales_settings_order_editing","summary":"Get order editing guards","tags":["Sales"],"parameters":[],"responses":{"200":{"description":"Current order editing guards","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchema"},"example":{"orderCustomerEditableStatuses":null,"orderAddressEditableStatuses":null,"orderStatuses":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string"}]}}}},"400":{"description":"Missing scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/settings/order-editing\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_settings_order_editing","summary":"Update order editing guards","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderCustomerEditableStatuses":null,"orderAddressEditableStatuses":null}}}},"responses":{"200":{"description":"Updated order editing guards","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchema"},"example":{"orderCustomerEditableStatuses":null,"orderAddressEditableStatuses":null,"orderStatuses":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string"}]}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/settings/order-editing\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderCustomerEditableStatuses\\\": null,\n  \\\"orderAddressEditableStatuses\\\": null\n}\""}],"x-require-auth":true}},"/sales/shipment-statuses":{"get":{"operationId":"sales_get_sales_shipment_statuses","summary":"List shipment statuses","description":"Manage the lifecycle states available for shipments.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment statuses","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":null,"color":null,"icon":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/shipment-statuses?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_shipment_statuses","summary":"Create shipment status","description":"Creates a new shipment status.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","value":"string","color":null,"icon":null}}},"description":"Payload describing the shipment status to create."},"responses":{"201":{"description":"Shipment status created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/shipment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_shipment_statuses","summary":"Update shipment status","description":"Updates an existing shipment status by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","color":null,"icon":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target shipment status."},"responses":{"200":{"description":"Shipment status updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/shipment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_shipment_statuses","summary":"Delete shipment status","description":"Deletes a shipment status identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Shipment status deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/shipment-statuses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/shipments":{"get":{"operationId":"sales_get_sales_shipments","summary":"List shipments","description":"Returns a paginated collection of shipments that belong to the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters1Schema"},"example":1},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","order_id":"00000000-0000-4000-8000-000000000000","shipment_number":null,"shipping_method_id":null,"shipping_method_code":null,"shipping_method_name":null,"status_entry_id":null,"status":null,"status_label":null,"carrier_name":null,"tracking_numbers":null,"shipped_at":null,"delivered_at":null,"weight_value":null,"weight_unit":null,"declared_value_net":null,"declared_value_gross":null,"currency_code":null,"notes":null,"metadata":null,"custom_values":null,"customValues":null,"custom_fields":null,"customFields":null,"items_snapshot":null,"itemsSnapshot":null,"created_at":"string","updated_at":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/shipments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_shipments","summary":"Create shipment","description":"Creates a shipment for an order.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000"}}},"description":"Creates a shipment for an order."},"responses":{"201":{"description":"Shipment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_shipments","summary":"Update shipment","description":"Updates a shipment.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target shipment."},"responses":{"200":{"description":"Shipment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_shipments","summary":"Delete shipment","description":"Deletes a shipment.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a shipment."},"responses":{"200":{"description":"Shipment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/shipping-methods":{"get":{"operationId":"sales_get_sales_shipping_methods","summary":"List shipping methods","description":"Maintain shipping services, carrier mappings, and pricing defaults for order fulfillment.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters2Schema"},"example":"string"},{"name":"currency","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters3Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters5Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters6Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters7Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters8Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipping methods","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":"string","description":null,"carrierCode":null,"providerKey":null,"serviceLevel":null,"estimatedTransitDays":null,"baseRateNet":"string","baseRateGross":"string","currencyCode":null,"isActive":true,"metadata":null,"providerSettings":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/shipping-methods?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_shipping_methods","summary":"Create shipping method","description":"Creates a new shipping method.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string"}}},"description":"Payload describing the shipping method to create."},"responses":{"201":{"description":"Shipping method created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/shipping-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_shipping_methods","summary":"Update shipping method","description":"Updates an existing shipping method by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target shipping method."},"responses":{"200":{"description":"Shipping method updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/shipping-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_shipping_methods","summary":"Delete shipping method","description":"Deletes a shipping method identified by id.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload."},"responses":{"200":{"description":"Shipping method deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/shipping-methods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/tags":{"get":{"operationId":"sales_get_sales_tags","summary":"List sales tags","description":"Manage reusable tags to categorize sales orders and quotes.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters3Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated sales tags","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","slug":"string","label":null,"color":null,"description":null,"organization_id":null,"tenant_id":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/tags?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_tags","summary":"Create sales tag","description":"Creates a sales document tag.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","slug":"string","label":"string"}}},"description":"Creates a sales document tag."},"responses":{"201":{"description":"Sales tag created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"slug\\\": \\\"string\\\",\n  \\\"label\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_tags","summary":"Update sales tag","description":"Updates an existing sales tag.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target sales tag."},"responses":{"200":{"description":"Sales tag updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_tags","summary":"Delete sales tag","description":"Deletes a sales tag.","tags":["Sales"],"parameters":[],"responses":{"200":{"description":"Sales tag deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/tags\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sales/tax-rates":{"get":{"operationId":"sales_get_sales_tax_rates","summary":"List tax rates","description":"Returns a paginated list of sales tax rates for the current organization.","tags":["Sales"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters2Schema"},"example":"string"},{"name":"country","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters3Schema"},"example":"string"},{"name":"region","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters4Schema"},"example":"string"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isCompound","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters7Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters8Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters9Schema"},"example":"asc"},{"name":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetParameters10Schema"},"example":true}],"responses":{"200":{"description":"Paginated list of tax rates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":null,"rate":1,"countryCode":null,"regionCode":null,"postalCode":null,"city":null,"customerGroupId":null,"productCategoryId":null,"channelId":null,"priority":null,"isCompound":true,"isDefault":true,"metadata":null,"startsAt":null,"endsAt":null,"organizationId":null,"tenantId":null,"createdAt":"string","updatedAt":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/tax-rates?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sales_post_sales_tax_rates","summary":"Create tax rate","description":"Creates a new tax rate record.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string","rate":1}}},"description":"Payload describing the tax rate to create."},"responses":{"201":{"description":"Identifier of the created tax rate","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sales/tax-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"rate\\\": 1\n}\""}],"x-require-auth":true},"put":{"operationId":"sales_put_sales_tax_rates","summary":"Update tax rate","description":"Updates an existing tax rate by identifier.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the target tax rate."},"responses":{"200":{"description":"Update acknowledgement","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sales/tax-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sales_delete_sales_tax_rates","summary":"Delete tax rate","description":"Deletes a tax rate identified by `id`.","tags":["Sales"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Identifier payload for the tax rate to delete."},"responses":{"200":{"description":"Deletion acknowledgement","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sales/tax-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sales/quotes/public/{token}":{"get":{"operationId":"sales_get_sales_quotes_public_token","summary":"Get quote details by acceptance token","tags":["Sales"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Quote details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchema"},"example":{"quote":{"quoteNumber":"string","currencyCode":"string","validFrom":null,"validUntil":null,"status":null,"subtotalNetAmount":"string","subtotalGrossAmount":"string","discountTotalAmount":"string","taxTotalAmount":"string","grandTotalNetAmount":"string","grandTotalGrossAmount":"string"},"lines":[{"lineNumber":null,"kind":"string","name":null,"description":null,"quantity":"string","quantityUnit":null,"normalizedQuantity":"string","normalizedUnit":null,"uomSnapshot":null,"currencyCode":"string","unitPriceNet":"string","unitPriceGross":"string","discountAmount":"string","discountPercent":"string","taxRate":"string","taxAmount":"string","totalNetAmount":"string","totalGrossAmount":"string","unitPriceReference":null}],"adjustments":[{"scope":null,"kind":null,"label":null,"rate":null,"amountNet":null,"amountGross":null,"currencyCode":null,"position":null,"quoteLineId":null}],"isExpired":true}}}},"404":{"description":"Quote not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/quotes/public/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\""}]}},"/sales/returns/{id}":{"get":{"operationId":"sales_get_sales_returns_id","summary":"Get return details","tags":["Sales"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Return details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchema"},"example":{"return":{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","returnNumber":"string","statusEntryId":null,"status":null,"reason":null,"notes":null,"returnedAt":null,"createdAt":null,"updatedAt":null,"totalNetAmount":1,"totalGrossAmount":1},"lines":[{"id":"00000000-0000-4000-8000-000000000000","orderLineId":null,"quantityReturned":"string","unitPriceNet":"string","unitPriceGross":"string","totalNetAmount":"string","totalGrossAmount":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sales/returns/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/dashboard/operational":{"get":{"operationId":"wms_get_wms_dashboard_operational","summary":"Load operational dashboard data","description":"Aggregated KPIs, expiry watch lot rows (`expiryLots`), monthly movement trends, and recent activity for the WMS operational dashboard.","tags":["WMS"],"parameters":[{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dashboard payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchema"},"example":{"lastUpdatedAt":"string","warehouseId":null,"kpis":[{"id":"lowStock","count":1,"deltaSinceYesterday":null,"sparkline":[1]}],"expiryLots":[{"id":"00000000-0000-4000-8000-000000000000","lotNumber":"string","sku":"string","expiresAt":"string","availableQuantity":1,"category":"expiringSoon"}],"monthlyTrends":[{"month":"string","receive":1,"allocate":1}],"recentActivity":[{"id":"00000000-0000-4000-8000-000000000000","movementType":"string","quantity":1,"variantSku":null,"variantId":"00000000-0000-4000-8000-000000000000","referenceType":null,"referenceId":null,"reason":null,"locationLabel":"string","performedAt":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Warehouse not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/dashboard/operational\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/inventory-profiles":{"get":{"operationId":"wms_get_wms_inventory_profiles","summary":"List inventory profiles","description":"Returns a paginated collection of inventory profiles scoped to the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters1Schema"},"example":1},{"name":"catalogProductId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"catalogVariantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"defaultStrategy","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters4Schema"},"example":"fifo"},{"name":"trackLot","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters5Schema"},"example":"string"},{"name":"trackSerial","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters6Schema"},"example":"string"},{"name":"trackExpiration","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters7Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters9Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetParameters10Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated inventory profiles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"catalog_product_id":null,"catalog_variant_id":null,"product_title":null,"product_sku":null,"variant_name":null,"variant_sku":null,"default_uom":null,"track_lot":null,"track_serial":null,"track_expiration":null,"default_strategy":null,"reorder_point":null,"safety_stock":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/inventory-profiles?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"wms_post_wms_inventory_profiles","summary":"Create inventory profile","description":"Creates a product inventory profile.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","catalogProductId":"00000000-0000-4000-8000-000000000000","catalogVariantId":null,"defaultUom":"string","defaultStrategy":"fifo"}}},"description":"Creates a product inventory profile."},"responses":{"201":{"description":"Inventory profile created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory-profiles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogProductId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": null,\n  \\\"defaultUom\\\": \\\"string\\\",\n  \\\"defaultStrategy\\\": \\\"fifo\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_inventory_profiles","summary":"Update inventory profile","description":"Updates an inventory profile by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","catalogVariantId":null}}},"description":"Updates an inventory profile by id."},"responses":{"200":{"description":"Inventory profile updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/inventory-profiles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_inventory_profiles","summary":"Delete inventory profile","description":"Soft-deletes an inventory profile by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes an inventory profile by id."},"responses":{"200":{"description":"Inventory profile deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/inventory-profiles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/adjust":{"post":{"operationId":"wms_post_wms_inventory_adjust","summary":"Adjust inventory","description":"Applies a manual inventory adjustment and appends a movement ledger row.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","locationId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","delta":1,"reason":"string","referenceType":"manual","referenceId":"00000000-0000-4000-8000-000000000000","performedBy":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Inventory adjusted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"movementId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Insufficient stock","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Invalid location","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/adjust\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"locationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"delta\\\": 1,\n  \\\"reason\\\": \\\"string\\\",\n  \\\"referenceType\\\": \\\"manual\\\",\n  \\\"referenceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"performedBy\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/allocate":{"post":{"operationId":"wms_post_wms_inventory_allocate","summary":"Allocate reservation","description":"Converts a reservation from reserved quantity into allocated quantity on the selected stock buckets.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","reservationId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Reservation allocated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"allocationState":"allocated"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Reservation not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Invalid reservation state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/allocate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"reservationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/balances":{"get":{"operationId":"wms_get_wms_inventory_balances","summary":"List inventory balances","description":"Returns paginated inventory balance buckets for the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters1Schema"},"example":1},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"locationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"catalogVariantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"lotId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"serialNumber","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters6Schema"},"example":"string"},{"name":"lowStock","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters7Schema"},"example":"belowReorder"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetParameters8Schema"},"example":"string"}],"responses":{"200":{"description":"Inventory balances collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"warehouse_id":null,"warehouse_name":null,"warehouse_code":null,"location_id":null,"location_code":null,"location_type":null,"catalog_variant_id":null,"catalog_product_id":null,"variant_name":null,"variant_sku":null,"lot_id":null,"serial_number":null,"quantity_on_hand":null,"quantity_reserved":null,"quantity_allocated":null,"quantity_available":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/inventory/balances?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/inventory/cycle-count":{"post":{"operationId":"wms_post_wms_inventory_cycle_count","summary":"Cycle count reconcile","description":"Reconciles a counted quantity against the current on-hand balance and appends a cycle-count movement when a delta exists.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","locationId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","countedQuantity":1,"autoAdjust":true,"reason":"string","referenceId":"00000000-0000-4000-8000-000000000000","performedBy":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Cycle count reconciled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"adjustmentDelta":"string","movementId":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"422":{"description":"Invalid location","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/cycle-count\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"locationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"countedQuantity\\\": 1,\n  \\\"autoAdjust\\\": true,\n  \\\"reason\\\": \\\"string\\\",\n  \\\"referenceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"performedBy\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/import/apply":{"post":{"operationId":"wms_post_wms_inventory_import_apply","summary":"Apply inventory CSV import","description":"Applies validated inventory import rows via wms.inventory.adjust commands (idempotent skip when delta is zero).","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","importBatchId":"00000000-0000-4000-8000-000000000000","reason":"CSV import inventory receipt","mode":"additive","rows":[{"rowNumber":1,"warehouseId":"00000000-0000-4000-8000-000000000000","locationId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","quantity":1,"delta":1}]}}}},"responses":{"200":{"description":"Import applied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"importBatchId":"00000000-0000-4000-8000-000000000000","summary":{"applied":1,"skipped":1,"failed":1}}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Partial apply failure","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/import/apply\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"importBatchId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"reason\\\": \\\"CSV import inventory receipt\\\",\n  \\\"mode\\\": \\\"additive\\\",\n  \\\"rows\\\": [\n    {\n      \\\"rowNumber\\\": 1,\n      \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"locationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"quantity\\\": 1,\n      \\\"delta\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true}},"/wms/inventory/import/template":{"get":{"operationId":"wms_get_wms_inventory_import_template","summary":"Download inventory import CSV template","description":"Returns a CSV template for WMS inventory imports. By default the quantity column is added to existing on-hand stock; the \"Reconcile to exact balance\" import option treats it as the absolute target balance instead.","tags":["WMS"],"parameters":[],"responses":{"200":{"description":"CSV template file","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportTemplateGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportTemplateGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportTemplateGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/inventory/import/template\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/inventory/import/validate":{"post":{"operationId":"wms_post_wms_inventory_import_validate","summary":"Validate inventory CSV import","description":"Dry-run validation for inventory import CSV rows. By default (mode \"additive\"), quantity is added to existing on-hand stock; opt into mode \"reconcile\" to instead treat quantity as the absolute target balance (overwrites existing stock, including reducing it). Accepts JSON rows, JSON csv text, or multipart file upload.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","mode":"additive","rows":[{}]}}}},"responses":{"200":{"description":"Validation report","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"importBatchId":"00000000-0000-4000-8000-000000000000","summary":{"totalRows":1,"validRows":1,"errorRows":1,"warningRows":1,"skipRows":1},"rows":[{"rowNumber":1,"status":"valid","errors":["string"],"warnings":["string"]}]}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/import/validate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"mode\\\": \\\"additive\\\",\n  \\\"rows\\\": [\n    {}\n  ]\n}\""}],"x-require-auth":true}},"/wms/inventory/move":{"post":{"operationId":"wms_post_wms_inventory_move","summary":"Move inventory","description":"Moves stock from one location to another within a warehouse and appends a transfer movement.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","fromLocationId":"00000000-0000-4000-8000-000000000000","toLocationId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","quantity":1,"reason":"string","referenceType":"manual","referenceId":"00000000-0000-4000-8000-000000000000","performedBy":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Inventory moved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"movementId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Insufficient stock","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Invalid location","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/move\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"fromLocationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"toLocationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quantity\\\": 1,\n  \\\"reason\\\": \\\"string\\\",\n  \\\"referenceType\\\": \\\"manual\\\",\n  \\\"referenceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"performedBy\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/movements":{"get":{"operationId":"wms_get_wms_inventory_movements","summary":"List inventory movements","description":"Returns paginated inventory ledger entries for the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters1Schema"},"example":1},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"locationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"catalogVariantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"lotId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"referenceType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters6Schema"},"example":"po"},{"name":"referenceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters8Schema"},"example":"receipt"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetParameters9Schema"},"example":"string"}],"responses":{"200":{"description":"Inventory movements collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"warehouse_id":null,"warehouse_name":null,"warehouse_code":null,"location_from_id":null,"location_from_code":null,"location_from_type":null,"location_to_id":null,"location_to_code":null,"location_to_type":null,"catalog_variant_id":null,"catalog_product_id":null,"variant_name":null,"variant_sku":null,"lot_id":null,"serial_number":null,"quantity":null,"type":null,"reference_type":null,"reference_id":null,"performed_by":null,"performed_at":null,"received_at":null,"reason":null,"reason_code":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/inventory/movements?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/inventory/receive":{"post":{"operationId":"wms_post_wms_inventory_receive","summary":"Receive inventory","description":"Records inbound inventory receipt and appends a receipt movement ledger row.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","locationId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","quantity":1,"referenceType":"po","referenceId":"00000000-0000-4000-8000-000000000000","performedBy":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Inventory received","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"movementId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"422":{"description":"Invalid location","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/receive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"locationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quantity\\\": 1,\n  \\\"referenceType\\\": \\\"po\\\",\n  \\\"referenceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"performedBy\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/release":{"post":{"operationId":"wms_post_wms_inventory_release","summary":"Release reservation","description":"Releases a previously reserved or allocated inventory reservation.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","reservationId":"00000000-0000-4000-8000-000000000000","reason":"string"}}}},"responses":{"200":{"description":"Reservation released","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Reservation not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/release\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"reservationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"reason\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/wms/inventory/reservations":{"get":{"operationId":"wms_get_wms_inventory_reservations","summary":"List inventory reservations","description":"Returns paginated inventory reservations for the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters1Schema"},"example":1},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"catalogVariantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"lotId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sourceType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters5Schema"},"example":"order"},{"name":"sourceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters7Schema"},"example":"active"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetParameters8Schema"},"example":"string"}],"responses":{"200":{"description":"Inventory reservations collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"warehouse_id":null,"warehouse_name":null,"warehouse_code":null,"catalog_variant_id":null,"catalog_product_id":null,"variant_name":null,"variant_sku":null,"lot_id":null,"serial_number":null,"quantity":null,"source_type":null,"source_id":null,"source_label":null,"expires_at":null,"status":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/inventory/reservations?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/inventory/reserve":{"post":{"operationId":"wms_post_wms_inventory_reserve","summary":"Reserve inventory","description":"Creates an inventory reservation and assigns available buckets using the configured stock strategy.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","quantity":1,"sourceType":"order","sourceId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Inventory reserved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"reservationId":"00000000-0000-4000-8000-000000000000","allocatedBuckets":[{"locationId":"00000000-0000-4000-8000-000000000000","lotId":null,"quantity":"string"}]}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Insufficient stock","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Invalid tracking state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/inventory/reserve\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"quantity\\\": 1,\n  \\\"sourceType\\\": \\\"order\\\",\n  \\\"sourceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/locations":{"get":{"operationId":"wms_get_wms_locations","summary":"List warehouse locations","description":"Returns a paginated collection of warehouse locations scoped to the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters2Schema"},"example":"string"},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"parentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters5Schema"},"example":"zone"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters6Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters8Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetParameters9Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated warehouse locations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"warehouse_id":null,"warehouse_name":null,"warehouse_code":null,"parent_id":null,"code":null,"type":null,"is_active":null,"capacity_units":null,"capacity_weight":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/locations?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"wms_post_wms_locations","summary":"Create warehouse location","description":"Creates a storage location within a warehouse hierarchy.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","code":"string","type":"zone","parentId":null}}},"description":"Creates a storage location within a warehouse hierarchy."},"responses":{"201":{"description":"Warehouse location created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/locations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"type\\\": \\\"zone\\\",\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_locations","summary":"Update warehouse location","description":"Updates a warehouse location by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","parentId":null}}},"description":"Updates a warehouse location by id."},"responses":{"200":{"description":"Warehouse location updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/locations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"parentId\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_locations","summary":"Delete warehouse location","description":"Soft-deletes a warehouse location by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a warehouse location by id."},"responses":{"200":{"description":"Warehouse location deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/locations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/lots":{"get":{"operationId":"wms_get_wms_lots","summary":"List inventory lots","description":"Returns a paginated collection of inventory lots scoped to the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters2Schema"},"example":"string"},{"name":"catalogVariantId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters4Schema"},"example":"available"},{"name":"expiryWindow","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters5Schema"},"example":"expiringSoon"},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters8Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetParameters9Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated inventory lots","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"catalog_variant_id":null,"sku":null,"lot_number":null,"batch_number":null,"manufactured_at":null,"best_before_at":null,"expires_at":null,"status":null,"metadata":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/lots?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"wms_post_wms_lots","summary":"Create inventory lot","description":"Creates an inventory lot or batch record.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","catalogVariantId":"00000000-0000-4000-8000-000000000000","sku":"string","lotNumber":"string"}}},"description":"Creates an inventory lot or batch record."},"responses":{"201":{"description":"Inventory lot created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/lots\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"catalogVariantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"sku\\\": \\\"string\\\",\n  \\\"lotNumber\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_lots","summary":"Update inventory lot","description":"Updates an inventory lot by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates an inventory lot by id."},"responses":{"200":{"description":"Inventory lot updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/lots\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_lots","summary":"Delete inventory lot","description":"Soft-deletes an inventory lot by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes an inventory lot by id."},"responses":{"200":{"description":"Inventory lot deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/lots\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/sales-orders/assign-warehouse":{"post":{"operationId":"wms_post_wms_sales_orders_assign_warehouse","summary":"Assign warehouse to sales order","description":"Explicitly assigns a warehouse to a sales order. When set, the enricher returns this warehouse and the reservation automation prefers it.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","salesOrderId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Warehouse assignment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"assignmentId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"201":{"description":"Warehouse assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignmentId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Warehouse not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Warehouse is inactive","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/assign-warehouse\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"salesOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/sales-orders/unassign-warehouse":{"post":{"operationId":"wms_post_wms_sales_orders_unassign_warehouse","summary":"Remove warehouse assignment from sales order","description":"Removes an explicit warehouse assignment from a sales order. The enricher will fall back to deriving the warehouse from active reservations or the primary warehouse.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","salesOrderId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Assignment removed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/unassign-warehouse\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"salesOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/warehouses":{"get":{"operationId":"wms_get_wms_warehouses","summary":"List warehouses","description":"Returns a paginated collection of warehouses scoped to the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters2Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters4Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetParameters6Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated warehouses","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"name":null,"code":null,"is_active":null,"is_primary":null,"address_line1":null,"city":null,"postal_code":null,"country":null,"timezone":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/warehouses?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"wms_post_wms_warehouses","summary":"Create warehouse","description":"Creates a warehouse for inventory operations.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","name":"string","code":"string"}}},"description":"Creates a warehouse for inventory operations."},"responses":{"201":{"description":"Warehouse created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null,"updatedAt":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/warehouses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_warehouses","summary":"Update warehouse","description":"Updates a warehouse by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a warehouse by id."},"responses":{"200":{"description":"Warehouse updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/warehouses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_warehouses","summary":"Delete warehouse","description":"Soft-deletes a warehouse by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a warehouse by id."},"responses":{"200":{"description":"Warehouse deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/warehouses\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/zones":{"get":{"operationId":"wms_get_wms_zones","summary":"List warehouse zones","description":"Returns a paginated collection of warehouse zones scoped to the authenticated organization.","tags":["WMS"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters2Schema"},"example":"string"},{"name":"warehouseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetParameters6Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated warehouse zones","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":null,"organization_id":null,"tenant_id":null,"warehouse_id":null,"warehouse_name":null,"warehouse_code":null,"code":null,"name":null,"priority":null,"created_at":null,"updated_at":null,"customValues":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/zones?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"wms_post_wms_zones","summary":"Create warehouse zone","description":"Creates a zone within a warehouse.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","code":"string","name":"string"}}},"description":"Creates a zone within a warehouse."},"responses":{"201":{"description":"Warehouse zone created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/zones\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_zones","summary":"Update warehouse zone","description":"Updates a warehouse zone by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a warehouse zone by id."},"responses":{"200":{"description":"Warehouse zone updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/zones\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_zones","summary":"Delete warehouse zone","description":"Soft-deletes a warehouse zone by id.","tags":["WMS"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a warehouse zone by id."},"responses":{"200":{"description":"Warehouse zone deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/zones\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/wms/sales-orders/{salesOrderId}/re-run-reservation":{"post":{"operationId":"wms_post_wms_sales_orders_salesOrderId_re_run_reservation","summary":"Re-run reservation for sales order","description":"Triggers the automatic reservation logic for a sales order, attempting to fill any remaining shortfall.","tags":["WMS"],"parameters":[{"name":"salesOrderId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostParameters0Schema"}}],"responses":{"200":{"description":"Reservation re-run attempted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Order not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/:salesOrderId/re-run-reservation\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/wms/sales-orders/{salesOrderId}/warehouse-assignment":{"get":{"operationId":"wms_get_wms_sales_orders_salesOrderId_warehouse_assignment","summary":"Get warehouse assignment for sales order","description":"Returns the explicit WMS warehouse assignment for a sales order, or null when none is set.","tags":["WMS"],"parameters":[{"name":"salesOrderId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetParameters0Schema"}}],"responses":{"200":{"description":"Assignment state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchema"},"example":{"assignment":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/:salesOrderId/warehouse-assignment\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"wms_put_wms_sales_orders_salesOrderId_warehouse_assignment","summary":"Assign warehouse to sales order","description":"Creates or replaces the explicit warehouse assignment for a sales order.","tags":["WMS"],"parameters":[{"name":"salesOrderId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Warehouse assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"assignmentId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"201":{"description":"Warehouse assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignmentId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Warehouse not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Warehouse is inactive","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/:salesOrderId/warehouse-assignment\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"patch":{"operationId":"wms_patch_wms_sales_orders_salesOrderId_warehouse_assignment","summary":"Patch warehouse assignment for sales order","description":"Same as PUT — upserts the explicit warehouse assignment.","tags":["WMS"],"parameters":[{"name":"salesOrderId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Warehouse assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"assignmentId":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/:salesOrderId/warehouse-assignment\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"tenantId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"wms_delete_wms_sales_orders_salesOrderId_warehouse_assignment","summary":"Remove warehouse assignment from sales order","description":"Clears the explicit assignment so enricher and automation fall back again.","tags":["WMS"],"parameters":[{"name":"salesOrderId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteParameters0Schema"}}],"responses":{"200":{"description":"Assignment removed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/wms/sales-orders/:salesOrderId/warehouse-assignment\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/currencies/currencies/options":{"get":{"operationId":"currencies_get_currencies_currencies_options","summary":"List currency options","description":"Returns currencies formatted for select inputs.","tags":["Currencies"],"parameters":[{"name":"q","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetParameters0Schema"},"example":"string"},{"name":"query","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetParameters1Schema"},"example":"string"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetParameters2Schema"},"example":"string"},{"name":"includeInactive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetParameters3Schema"},"example":"true"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetParameters4Schema"},"example":1}],"responses":{"200":{"description":"Option list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"value":"string","label":"string"}]}}}},"400":{"description":"Invalid query","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses400ContentApplicationJsonSchema"},"example":{"items":[]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"items":[]}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currencies/currencies/options?limit=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/currencies/currencies":{"get":{"operationId":"currencies_get_currencies_currencies","summary":"List currencies","description":"Returns a paginated collection of currencies scoped to the authenticated organization.","tags":["Currencies"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters0Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters3Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters4Schema"},"example":"code"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters5Schema"},"example":"asc"},{"name":"isBase","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters6Schema"},"example":"true"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters7Schema"},"example":"true"},{"name":"code","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters8Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated currencies","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","code":"string","name":"string","symbol":null,"decimalPlaces":1,"thousandsSeparator":null,"decimalSeparator":null,"isBase":true,"isActive":true,"createdAt":null,"updatedAt":null,"organizationId":"string","tenantId":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currencies/currencies?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"currencies_post_currencies_currencies","summary":"Create currency","description":"Creates a new currency.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"string","tenantId":"string","code":"string","name":"string","symbol":null,"thousandsSeparator":null,"decimalSeparator":null}}},"description":"Creates a new currency."},"responses":{"201":{"description":"Currency created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/currencies/currencies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"string\\\",\n  \\\"tenantId\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"symbol\\\": null,\n  \\\"thousandsSeparator\\\": null,\n  \\\"decimalSeparator\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"currencies_put_currencies_currencies","summary":"Update currency","description":"Updates an existing currency by id.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"string","symbol":null,"thousandsSeparator":null,"decimalSeparator":null}}},"description":"Updates an existing currency by id."},"responses":{"200":{"description":"Currency updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/currencies/currencies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"string\\\",\n  \\\"symbol\\\": null,\n  \\\"thousandsSeparator\\\": null,\n  \\\"decimalSeparator\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"currencies_delete_currencies_currencies","summary":"Delete currency","description":"Deletes a currency by id.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes a currency by id."},"responses":{"200":{"description":"Currency deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/currencies/currencies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/currencies/exchange-rates":{"get":{"operationId":"currencies_get_currencies_exchange_rates","summary":"List exchangerates","description":"Returns a paginated collection of exchangerates scoped to the authenticated organization.","tags":["Currencies"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters2Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters3Schema"},"example":"fromCurrencyCode"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters4Schema"},"example":"asc"},{"name":"fromCurrencyCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters5Schema"},"example":"string"},{"name":"toCurrencyCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters6Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters7Schema"},"example":"true"},{"name":"source","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters8Schema"},"example":"string"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters9Schema"},"example":"buy"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetParameters10Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated exchangerates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","fromCurrencyCode":"string","toCurrencyCode":"string","rate":"string","date":"string","source":"string","type":null,"isActive":true,"createdAt":null,"updatedAt":null,"organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currencies/exchange-rates?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"currencies_post_currencies_exchange_rates","summary":"Create exchangerate","description":"Creates a new exchange rate.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchema"},"example":{"organizationId":"string","tenantId":"string","fromCurrencyCode":"string","toCurrencyCode":"string","rate":"string","type":null}}},"description":"Creates a new exchange rate."},"responses":{"201":{"description":"ExchangeRate created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/currencies/exchange-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"organizationId\\\": \\\"string\\\",\n  \\\"tenantId\\\": \\\"string\\\",\n  \\\"fromCurrencyCode\\\": \\\"string\\\",\n  \\\"toCurrencyCode\\\": \\\"string\\\",\n  \\\"rate\\\": \\\"string\\\",\n  \\\"type\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"currencies_put_currencies_exchange_rates","summary":"Update exchangerate","description":"Updates an existing exchange rate by id.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"string","type":null}}},"description":"Updates an existing exchange rate by id."},"responses":{"200":{"description":"ExchangeRate updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/currencies/exchange-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"string\\\",\n  \\\"type\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"currencies_delete_currencies_exchange_rates","summary":"Delete exchangerate","description":"Deletes an exchange rate by id.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Deletes an exchange rate by id."},"responses":{"200":{"description":"ExchangeRate deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/currencies/exchange-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/currencies/fetch-configs":{"get":{"operationId":"listCurrencyFetchConfigs","summary":"List currency fetch configurations","description":"Returns all currency fetch configurations scoped to the authenticated organization.","tags":["Currencies"],"parameters":[],"responses":{"200":{"description":"A list of currency fetch configurations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchema"},"example":{"configs":[{"id":"00000000-0000-4000-8000-000000000000","organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","provider":"string","isEnabled":true,"syncTime":null,"lastSyncAt":null,"lastSyncStatus":null,"lastSyncMessage":null,"lastSyncCount":null,"config":null,"createdAt":"string","updatedAt":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currencies/fetch-configs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"createCurrencyFetchConfig","summary":"Create currency fetch configuration","description":"Creates a new currency fetch configuration.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchema"},"example":{"provider":"NBP","isEnabled":false,"syncTime":null,"config":null}}}},"responses":{"201":{"description":"Currency fetch configuration created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchema"},"example":{"config":{"id":"00000000-0000-4000-8000-000000000000","organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","provider":"string","isEnabled":true,"syncTime":null,"lastSyncAt":null,"lastSyncStatus":null,"lastSyncMessage":null,"lastSyncCount":null,"config":null,"createdAt":"string","updatedAt":"string"}}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/currencies/fetch-configs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"provider\\\": \\\"NBP\\\",\n  \\\"isEnabled\\\": false,\n  \\\"syncTime\\\": null,\n  \\\"config\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"updateCurrencyFetchConfig","summary":"Update currency fetch configuration","description":"Updates an existing currency fetch configuration by id.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchema"},"example":{"syncTime":null,"config":null,"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Currency fetch configuration updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchema"},"example":{"config":{"id":"00000000-0000-4000-8000-000000000000","organizationId":"00000000-0000-4000-8000-000000000000","tenantId":"00000000-0000-4000-8000-000000000000","provider":"string","isEnabled":true,"syncTime":null,"lastSyncAt":null,"lastSyncStatus":null,"lastSyncMessage":null,"lastSyncCount":null,"config":null,"createdAt":"string","updatedAt":"string"}}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/currencies/fetch-configs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"syncTime\\\": null,\n  \\\"config\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"deleteCurrencyFetchConfig","summary":"Delete currency fetch configuration","description":"Deletes a currency fetch configuration by id.","tags":["Currencies"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Currency fetch configuration identifier to delete"}],"responses":{"200":{"description":"Currency fetch configuration deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses200ContentApplicationJsonSchema"},"example":{"success":true}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/currencies/fetch-configs?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/currencies/fetch-rates":{"post":{"operationId":"fetchCurrencyRates","summary":"Fetch currency rates","description":"Fetches currency exchange rates from configured providers for a specific date.","tags":["Currencies"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Currency rates fetched successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchema"},"example":{"totalFetched":1,"byProvider":{"key":{"count":1}},"errors":["string"]}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchema"},"example":{"totalFetched":1,"byProvider":{"key":{"count":1}},"errors":["string"]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/currencies/fetch-rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}]}},"/dictionaries":{"get":{"operationId":"dictionaries_get_dictionaries","summary":"List dictionaries","description":"Returns dictionaries accessible to the current organization, optionally including inactive records.","tags":["Dictionaries"],"parameters":[{"name":"includeInactive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetParameters0Schema"},"example":"true"}],"responses":{"200":{"description":"Dictionary collection.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to load dictionaries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dictionaries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"dictionaries_post_dictionaries","summary":"Create dictionary","description":"Registers a dictionary scoped to the current organization.","tags":["Dictionaries"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchema"},"example":{"key":"string","name":"string"}}},"description":"Dictionary definition including unique key and display name."},"responses":{"201":{"description":"Dictionary created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Dictionary key already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to create dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dictionaries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"key\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/{entryId}":{"patch":{"operationId":"dictionaries_patch_dictionaries_dictionaryId_entries_entryId","summary":"Update dictionary entry","description":"Updates the specified dictionary entry using the command bus pipeline.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"entryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{"color":null,"icon":null}}},"description":"Fields to update on the dictionary entry."},"responses":{"200":{"description":"Dictionary entry updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to update entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"dictionaries_delete_dictionaries_dictionaryId_entries_entryId","summary":"Delete dictionary entry","description":"Deletes the specified dictionary entry via the command bus.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"entryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Entry deleted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to delete entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/reorder":{"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries_reorder","summary":"Reorder dictionary entries","description":"Updates the position of dictionary entries for drag-and-drop reordering.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchema"},"example":{"entries":[{"id":"00000000-0000-4000-8000-000000000000","position":1}]}}},"description":"Array of entry IDs with their new positions."},"responses":{"200":{"description":"Entries reordered.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to reorder entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/reorder\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entries\\\": [\n    {\n      \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"position\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries":{"get":{"operationId":"dictionaries_get_dictionaries_dictionaryId_entries","summary":"List dictionary entries","description":"Returns entries for the specified dictionary ordered by its configured entry sort mode. The number of entries returned per request is capped at 500; use `limit` and `offset` with the `total`/`hasMore` response fields to page through larger dictionaries.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"limit","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetParameters1Schema"},"example":1,"description":"Maximum entries to return. Defaults to and is capped at 500."},{"name":"offset","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetParameters2Schema"},"example":1,"description":"Number of entries to skip. Defaults to 0."}],"responses":{"200":{"description":"Dictionary entries.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}],"total":1,"limit":1,"offset":1,"hasMore":true,"sortMode":"label_asc"}}}},"400":{"description":"Invalid parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to load dictionary entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries","summary":"Create dictionary entry","description":"Creates a new entry in the specified dictionary.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchema"},"example":{"value":"string","color":null,"icon":null}}},"description":"Entry value, label, and optional presentation metadata."},"responses":{"201":{"description":"Dictionary entry created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to create dictionary entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/set-default":{"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries_set_default","summary":"Set default dictionary entry","description":"Marks the specified entry as the default for this dictionary, clearing any previous default.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchema"},"example":{"entryId":"00000000-0000-4000-8000-000000000000"}}},"description":"ID of the entry to set as default."},"responses":{"200":{"description":"Default entry set.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to set default entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/set-default\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entryId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/dictionaries/{dictionaryId}":{"get":{"operationId":"dictionaries_get_dictionaries_dictionaryId","summary":"Get dictionary","description":"Returns details for the specified dictionary, including inheritance flags.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dictionary details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Invalid parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to load dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"dictionaries_patch_dictionaries_dictionaryId","summary":"Update dictionary","description":"Updates mutable attributes of the dictionary. Currency dictionaries are protected from modification.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Fields to update on the dictionary."},"responses":{"200":{"description":"Dictionary updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed or protected dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Dictionary key already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to update dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true},"delete":{"operationId":"dictionaries_delete_dictionaries_dictionaryId","summary":"Delete dictionary","description":"Soft deletes the dictionary unless it is the protected currency dictionary.","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dictionary archived.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Protected dictionary cannot be deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to delete dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/check/boolean":{"get":{"operationId":"feature_toggles_get_feature_toggles_check_boolean","summary":"Check if feature is enabled","description":"Checks if a feature toggle is enabled for the current context.","tags":["Feature Toggles"],"parameters":[{"name":"identifier","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetParameters0Schema"},"example":"string","description":"Feature toggle identifier"}],"responses":{"200":{"description":"Feature status","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchema"},"example":{"enabled":true,"source":"override","toggleId":"string","identifier":"string","tenantId":"string"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Tenant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/check/boolean?identifier=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/check/json":{"get":{"operationId":"feature_toggles_get_feature_toggles_check_json","summary":"Get json config","description":"Gets the json configuration for a feature toggle.","tags":["Feature Toggles"],"parameters":[{"name":"identifier","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetParameters0Schema"},"example":"string","description":"Feature toggle identifier"}],"responses":{"200":{"description":"Json config","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchema"},"example":{"valueType":"json","source":"override","toggleId":"string","identifier":"string","tenantId":"string"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Tenant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/check/json?identifier=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/check/number":{"get":{"operationId":"feature_toggles_get_feature_toggles_check_number","summary":"Get number config","description":"Gets the number configuration for a feature toggle.","tags":["Feature Toggles"],"parameters":[{"name":"identifier","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetParameters0Schema"},"example":"string","description":"Feature toggle identifier"}],"responses":{"200":{"description":"Number config","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchema"},"example":{"valueType":"number","value":1,"source":"override","toggleId":"string","identifier":"string","tenantId":"string"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Tenant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/check/number?identifier=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/check/string":{"get":{"operationId":"feature_toggles_get_feature_toggles_check_string","summary":"Get string config","description":"Gets the string configuration for a feature toggle.","tags":["Feature Toggles"],"parameters":[{"name":"identifier","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetParameters0Schema"},"example":"string","description":"Feature toggle identifier"}],"responses":{"200":{"description":"String config","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchema"},"example":{"valueType":"string","value":"string","source":"override","toggleId":"string","identifier":"string","tenantId":"string"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Tenant not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/check/string?identifier=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/global":{"get":{"operationId":"feature_toggles_get_feature_toggles_global","summary":"List global feature toggles","description":"Returns all global feature toggles with filtering and pagination. Requires superadmin role.","tags":["Feature Toggles"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters0Schema"},"example":1,"description":"Page number for pagination"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters1Schema"},"example":1,"description":"Number of items per page (max 200)"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters2Schema"},"example":"string","description":"Case-insensitive search across identifier, name, description, and category"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters3Schema"},"example":"boolean","description":"Filter by toggle type (boolean, string, number, json)"},{"name":"category","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters4Schema"},"example":"string","description":"Filter by category (case-insensitive partial match)"},{"name":"name","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters5Schema"},"example":"string","description":"Filter by name (case-insensitive partial match)"},{"name":"identifier","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters6Schema"},"example":"string","description":"Filter by identifier (case-insensitive partial match)"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters7Schema"},"example":"id","description":"Field to sort by"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetParameters8Schema"},"example":"asc","description":"Sort direction (ascending or descending)"}],"responses":{"200":{"description":"Feature toggles collection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","identifier":"string","name":"string","description":null,"category":null,"type":"boolean","defaultValue":null,"createdAt":null,"updatedAt":null}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - superadmin role required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/global?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"feature_toggles_post_feature_toggles_global","summary":"Create global feature toggle","description":"Creates a new global feature toggle. Requires superadmin role.","tags":["Feature Toggles"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchema"},"example":{"identifier":"string","name":"string","description":null,"category":null,"type":"boolean","defaultValue":null}}}},"responses":{"201":{"description":"Feature toggle created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - superadmin role required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/feature_toggles/global\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"identifier\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"category\\\": null,\n  \\\"type\\\": \\\"boolean\\\",\n  \\\"defaultValue\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"feature_toggles_put_feature_toggles_global","summary":"Update global feature toggle","description":"Updates an existing global feature toggle. Requires superadmin role.","tags":["Feature Toggles"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","description":null,"category":null,"defaultValue":null}}}},"responses":{"200":{"description":"Feature toggle updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - superadmin role required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Feature toggle not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/feature_toggles/global\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"description\\\": null,\n  \\\"category\\\": null,\n  \\\"defaultValue\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"feature_toggles_delete_feature_toggles_global","summary":"Delete global feature toggle","description":"Soft deletes a global feature toggle by ID. Requires superadmin role.","tags":["Feature Toggles"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"Feature toggle identifier"}],"responses":{"200":{"description":"Feature toggle deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - superadmin role required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Feature toggle not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/feature_toggles/global?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/overrides":{"get":{"operationId":"feature_toggles_get_feature_toggles_overrides","summary":"List overrides","description":"Returns list of feature toggle overrides.","tags":["Feature Toggles"],"parameters":[{"name":"category","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters0Schema"},"example":"string"},{"name":"name","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters1Schema"},"example":"string"},{"name":"identifier","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters3Schema"},"example":"identifier"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters4Schema"},"example":"asc"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetParameters6Schema"},"example":1}],"responses":{"200":{"description":"List of overrides","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","toggleId":"00000000-0000-4000-8000-000000000000","tenantName":"string","tenantId":"00000000-0000-4000-8000-000000000000","identifier":"string","name":"string","category":"string","isOverride":true}],"total":1,"page":1,"pageSize":1,"totalPages":1,"isSuperAdmin":true}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/overrides?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"feature_toggles_put_feature_toggles_overrides","summary":"Change override state","description":"Enable, disable or inherit a feature toggle for a specific tenant.","tags":["Feature Toggles"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchema"},"example":{"toggleId":"00000000-0000-4000-8000-000000000000","isOverride":true}}},"description":"Override details."},"responses":{"200":{"description":"Override updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"overrideToggleId":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/feature_toggles/overrides\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"toggleId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"isOverride\\\": true\n}\""}],"x-require-auth":true}},"/feature_toggles/global/{id}/override":{"get":{"operationId":"feature_toggles_get_feature_toggles_global_id_override","summary":"Fetch feature toggle override","description":"Returns feature toggle override.","tags":["Feature Toggles"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetParameters0Schema"}}],"responses":{"200":{"description":"Feature toggle overrides","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","tenantName":"string","tenantId":"00000000-0000-4000-8000-000000000000","toggleType":"boolean","updatedAt":null}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Feature toggle not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/global/:id/override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/feature_toggles/global/{id}":{"get":{"operationId":"feature_toggles_get_feature_toggles_global_id","summary":"Fetch feature toggle by ID","description":"Returns complete details of a feature toggle.","tags":["Feature Toggles"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetParameters0Schema"}}],"responses":{"200":{"description":"Feature toggle detail","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","identifier":"string","name":"string","description":null,"category":null,"type":"boolean","defaultValue":null,"createdAt":null,"updatedAt":null}}}},"400":{"description":"Invalid identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Feature toggle not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/feature_toggles/global/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/currency_policy/currencies":{"get":{"operationId":"currency_policy_get_currency_policy_currencies","summary":"List currency options","description":"Scoped option source backed by the installed `dictionaries` module; the shape matches the pickers’ existing `{ entries }` contract.","tags":["Currency policy"],"parameters":[],"responses":{"200":{"description":"Available currency entries.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchema"},"example":{"entries":[{"value":"string","label":"string"}]}}}},"400":{"description":"Missing organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Missing currencies.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currency_policy/currencies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/currency_policy/rates":{"get":{"operationId":"currency_policy_get_currency_policy_rates","summary":"List CNY rates for display","description":"The latest stored rate per requested currency, expressed as CNY per one unit of that currency. Read-only: the fetch is the installed `currencies` module’s.","tags":["Currency policy"],"parameters":[{"name":"symbols","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetParameters0Schema"},"example":"string","description":"Comma-separated ISO codes (max 32); omitted = every currency of the organization"}],"responses":{"200":{"description":"Rates found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchema"},"example":{"base":"string","items":[{"currencyCode":"string","rate":"string","date":"string","source":"string"}]}}}},"400":{"description":"Malformed symbols or no organization selected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing currencies.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Read failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/currency_policy/rates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/purchase-orders/documents":{"get":{"operationId":"purchasing_get_purchasing_purchase_orders_documents","summary":"List purchase order documents","description":"Returns a paginated collection of purchase order documents in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"docType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters2Schema"},"example":"supplier_invoice"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated purchase order documents","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","docType":"supplier_invoice","documentNumber":null,"issuedAt":null,"attachmentId":null,"note":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/documents?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"purchasing_post_purchasing_purchase_orders_documents","summary":"Create purchase order document","description":"Records a document on a purchase order; the file itself lives in attachments.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchema"},"example":{"orderId":"00000000-0000-4000-8000-000000000000","docType":"supplier_invoice","documentNumber":null,"issuedAt":null,"attachmentId":null,"note":null}}},"description":"Records a document on a purchase order; the file itself lives in attachments."},"responses":{"201":{"description":"Purchase Order Document created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"docType\\\": \\\"supplier_invoice\\\",\n  \\\"documentNumber\\\": null,\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_purchase_orders_documents","summary":"Update purchase order document","description":"Updates a purchase order document.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchema"},"example":{"documentNumber":null,"issuedAt":null,"attachmentId":null,"note":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a purchase order document."},"responses":{"200":{"description":"Purchase Order Document updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"documentNumber\\\": null,\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"purchasing_delete_purchasing_purchase_orders_documents","summary":"Delete purchase order document","description":"Soft-deletes a purchase order document.","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Purchase Order Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/purchase-orders/lines":{"get":{"operationId":"purchasing_get_purchasing_purchase_orders_lines","summary":"List purchase order lines","description":"Returns a paginated collection of purchase order lines in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters3Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters4Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated purchase order lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"productId":null,"catalogProductId":null,"supplierProductId":null,"productTitle":null,"productSku":null,"productUnit":null,"supplierSku":null,"quantity":"string","receivedQuantity":"string","unitPrice":"string","taxRate":"string","priceIncludesTax":true,"netTotal":"string","taxAmount":"string","lineTotal":"string","note":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/lines?page=1&pageSize=100&sortField=line_number&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/purchase-orders/payments":{"get":{"operationId":"purchasing_get_purchasing_purchase_orders_payments","summary":"List purchase payments","description":"Returns a paginated collection of purchase payments in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"orderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"stage","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters2Schema"},"example":"deposit"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters4Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters5Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated purchase payments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","orderId":"00000000-0000-4000-8000-000000000000","stage":"deposit","amount":"string","currencyCode":"string","paidAt":null,"reference":null,"methodNote":null,"created_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/payments?page=1&pageSize=50&sortField=paid_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"purchasing_post_purchasing_purchase_orders_payments","summary":"Create purchase payment","description":"Records a stage payment (deposit/balance/other) against a purchase order.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchema"},"example":{"orderId":"00000000-0000-4000-8000-000000000000","stage":"deposit","amount":1,"paidAt":"string","reference":null,"methodNote":null,"attachmentId":null}}},"description":"Records a stage payment (deposit/balance/other) against a purchase order."},"responses":{"201":{"description":"Purchase Payment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"orderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"stage\\\": \\\"deposit\\\",\n  \\\"amount\\\": 1,\n  \\\"paidAt\\\": \\\"string\\\",\n  \\\"reference\\\": null,\n  \\\"methodNote\\\": null,\n  \\\"attachmentId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_purchase_orders_payments","summary":"Purchase Payment management","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"purchasing_delete_purchasing_purchase_orders_payments","summary":"Delete purchase payment","description":"Removes a recorded payment while the order is not closed.","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Purchase Payment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/purchase-orders":{"get":{"operationId":"purchasing_get_purchasing_purchase_orders","summary":"List purchase orders","description":"Returns a paginated collection of purchase orders in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters3Schema"},"example":"draft"},{"name":"supplierId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"businessNumber","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters5Schema"},"example":"string"},{"name":"ownerUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters9Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters10Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetParameters11Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated purchase orders","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":null,"businessNumber":null,"productCategory":null,"supplierId":"00000000-0000-4000-8000-000000000000","supplierName":null,"ownerUserId":null,"ownerName":null,"customerId":null,"customerName":null,"status":"draft","currencyCode":"string","subtotal":"string","taxTotal":"string","total":"string","depositPercent":null,"depositAmount":null,"expectedShipAt":null,"placedAt":null,"notes":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"purchasing_post_purchasing_purchase_orders","summary":"Create purchase order","description":"Creates a draft purchase order with its lines in the caller’s organization.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchema"},"example":{"supplierId":"00000000-0000-4000-8000-000000000000","businessNumber":null,"productCategory":null,"ownerUserId":null,"ownerSnapshot":null,"customerId":null,"customerSnapshot":null,"depositPercent":null,"depositAmount":null,"expectedShipAt":null,"notes":null,"lines":[{"productId":null,"catalogProductId":null,"supplierProductId":null,"quantity":1,"unitPrice":1,"taxRate":0,"priceIncludesTax":true,"note":null}]}}},"description":"Creates a draft purchase order with its lines in the caller’s organization."},"responses":{"201":{"description":"Purchase Order created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"businessNumber\\\": null,\n  \\\"productCategory\\\": null,\n  \\\"ownerUserId\\\": null,\n  \\\"ownerSnapshot\\\": null,\n  \\\"customerId\\\": null,\n  \\\"customerSnapshot\\\": null,\n  \\\"depositPercent\\\": null,\n  \\\"depositAmount\\\": null,\n  \\\"expectedShipAt\\\": null,\n  \\\"notes\\\": null,\n  \\\"lines\\\": [\n    {\n      \\\"productId\\\": null,\n      \\\"catalogProductId\\\": null,\n      \\\"supplierProductId\\\": null,\n      \\\"quantity\\\": 1,\n      \\\"unitPrice\\\": 1,\n      \\\"taxRate\\\": 0,\n      \\\"priceIncludesTax\\\": true,\n      \\\"note\\\": null\n    }\n  ]\n}\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_purchase_orders","summary":"Update purchase order","description":"Updates a draft purchase order; requires the expected version for optimistic locking.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchema"},"example":{"businessNumber":null,"productCategory":null,"ownerUserId":null,"ownerSnapshot":null,"customerId":null,"customerSnapshot":null,"depositPercent":null,"depositAmount":null,"expectedShipAt":null,"notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a draft purchase order; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Purchase Order updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"businessNumber\\\": null,\n  \\\"productCategory\\\": null,\n  \\\"ownerUserId\\\": null,\n  \\\"ownerSnapshot\\\": null,\n  \\\"customerId\\\": null,\n  \\\"customerSnapshot\\\": null,\n  \\\"depositPercent\\\": null,\n  \\\"depositAmount\\\": null,\n  \\\"expectedShipAt\\\": null,\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"purchasing_delete_purchasing_purchase_orders","summary":"Delete purchase order","description":"Soft-deletes a draft or cancelled purchase order.","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Purchase Order deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/purchase-orders/transitions":{"get":{"operationId":"purchasing_get_purchasing_purchase_orders_transitions","summary":"List purchase order transitions","description":"Returns a paginated collection of purchase order transitions in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated purchase order transitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/transitions?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"purchasing_post_purchasing_purchase_orders_transitions","summary":"Create purchase order transition","description":"Applies one allowed status transition to a purchase order.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","action":"place"}}},"description":"Applies one allowed status transition to a purchase order."},"responses":{"201":{"description":"Purchase Order Transition created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/purchase-orders/transitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"action\\\": \\\"place\\\"\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products/import":{"post":{"operationId":"purchasing_post_purchasing_supplier_products_import","summary":"Add quotation lines to a supplier’s product library","description":"Creates or refreshes one library row per selected quotation line, keyed by `derived_sku ?? item_no` inside the quotation’s supplier. Only non-empty, changed values are written, so re-importing the same quotation reports `skipped` and changes nothing. Per-line failures (a line with no item number, or a code owned by a soft-deleted row) are reported without stopping the other lines.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","lineIds":["00000000-0000-4000-8000-000000000000"]}}}},"responses":{"200":{"description":"Import finished","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchema"},"example":{"created":1,"updated":1,"skipped":1,"failed":[{"lineId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"message":"string"}]}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The referenced record or state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/import\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"lineIds\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ]\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products/link":{"post":{"operationId":"purchasing_post_purchasing_supplier_products_link","summary":"Link a supplier product to an existing product master row","description":"Points the library row at a product that already exists (关联已有商品), re-points it (换绑), or clears the link with `productId: null` (解除关联). Writes only `product_id`: the master’s fields and prices are never touched. The target’s scope and liveness are re-checked inside the transaction that performs the write, so a product deleted between the picker’s read and the write is refused (422 `product_deleted`) with nothing written; a product outside the caller’s organization is a 404.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","productId":null}}}},"responses":{"200":{"description":"Link written","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","productId":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The referenced record or state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/link\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"productId\\\": null\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products/prices":{"get":{"operationId":"purchasing_get_purchasing_supplier_products_prices","summary":"List supplier product prices","description":"Returns a paginated collection of supplier product prices in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"supplierProductId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"supplierProductIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters2Schema"},"example":"string"},{"name":"priceKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters3Schema"},"example":"supplier_cost"},{"name":"currencyCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters4Schema"},"example":"string"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters6Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters7Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters8Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters9Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetParameters10Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated supplier product prices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","supplierProductId":"00000000-0000-4000-8000-000000000000","priceKind":"supplier_cost","currencyCode":"string","minQuantity":1,"unitPrice":"string","isActive":true,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/prices?page=1&pageSize=50&sortField=price_kind&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_supplier_products_prices","summary":"Update supplier product price","description":"Submits the item’s whole price set: one row per kind (`supplier_cost`, `company_offer`) × currency × minimum quantity. Rows missing from the payload are deactivated rather than deleted, a duplicate `(kind, currency, minQuantity)` key answers 400, and a currency that is not in the currency dictionary answers 422 `currency_not_in_dictionary`.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchema"},"example":{"supplierProductId":"00000000-0000-4000-8000-000000000000","rows":[{"priceKind":"supplier_cost","minQuantity":1,"unitPrice":"string","isActive":true}]}}},"description":"Submits the item’s whole price set: one row per kind (`supplier_cost`, `company_offer`) × currency × minimum quantity. Rows missing from the payload are deactivated rather than deleted, a duplicate `(kind, currency, minQuantity)` key answers 400, and a currency that is not in the currency dictionary answers 422 `currency_not_in_dictionary`."},"responses":{"200":{"description":"Supplier Product Price updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierProductId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"rows\\\": [\n    {\n      \\\"priceKind\\\": \\\"supplier_cost\\\",\n      \\\"minQuantity\\\": 1,\n      \\\"unitPrice\\\": \\\"string\\\",\n      \\\"isActive\\\": true\n    }\n  ]\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products/promote-batch":{"post":{"operationId":"purchasing_post_purchasing_supplier_products_promote_batch","summary":"Create product records for several supplier products at once","description":"Runs the same promotion as the single-row action for every id, with per-row isolation: one row’s failure (a SKU owned by a deleted product, an unknown id) is reported in `failed[]` with its code and message while the rest are written. Duplicate ids are collapsed to their first occurrence, so the counts describe distinct rows. Bounded to 100 ids per request.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchema"},"example":{"ids":["00000000-0000-4000-8000-000000000000"]}}}},"responses":{"200":{"description":"Batch finished","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchema"},"example":{"created":1,"updated":1,"skipped":1,"failed":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","message":"string"}]}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The referenced record or state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/promote-batch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"ids\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ]\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products/promote":{"post":{"operationId":"purchasing_post_purchasing_supplier_products_promote","summary":"Sync a supplier product into the product master","description":"Creates the product master row for this supplier code, or updates the existing one by SKU, and merges a `purchase`-tier price row from the most recent quotation line that quoted the code (the other price tiers are preserved). Backfills `product_id` on the library row. Idempotent: a row that already carries `product_id` reports `action: \"skipped\"` and writes nothing.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Sync finished","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchema"},"example":{"productId":"00000000-0000-4000-8000-000000000000","action":"created","priceSkipped":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The referenced record or state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/promote\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/purchasing/supplier-products":{"get":{"operationId":"purchasing_get_purchasing_supplier_products","summary":"List supplier products","description":"Returns a paginated collection of supplier products in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"supplierId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"linked","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters3Schema"},"example":"all"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters4Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters5Schema"},"example":"active"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters6Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters7Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters8Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetParameters9Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated supplier products","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","supplierId":"00000000-0000-4000-8000-000000000000","supplierName":null,"supplierSku":"string","itemNo":null,"brandValue":null,"name":"string","nameZh":null,"nameEn":null,"description":null,"declarationElements":null,"unit":"string","hsCode":null,"supplierCostPrice":null,"companyOfferPrice":null,"companyOfferSource":null,"discountPercent":null,"moqQuantity":null,"cartonQuantity":null,"unitNetWeight":null,"unitGrossWeight":null,"unitVolume":null,"innerPacking":null,"productId":null,"productSku":null,"productName":null,"status":"string","source":"string","lastQuoteId":null,"notes":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products?linked=all&status=active&page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"purchasing_post_purchasing_supplier_products","summary":"Create supplier product","description":"Adds one item to a supplier’s product library in the caller’s organization. The supplier code is unique per supplier including soft-deleted rows, so a duplicate answers 409 `supplier_product_sku_taken`.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchema"},"example":{"supplierId":"00000000-0000-4000-8000-000000000000","supplierSku":"string","itemNo":null,"brandValue":null,"name":"string","nameZh":null,"nameEn":null,"description":null,"declarationElements":null,"unit":"PCS","hsCode":null,"unitNetWeight":"string","unitGrossWeight":"string","unitVolume":"string","discountPercent":"string","status":"active","notes":null}}},"description":"Adds one item to a supplier’s product library in the caller’s organization. The supplier code is unique per supplier including soft-deleted rows, so a duplicate answers 409 `supplier_product_sku_taken`."},"responses":{"201":{"description":"Supplier Product created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"supplierSku\\\": \\\"string\\\",\n  \\\"itemNo\\\": null,\n  \\\"brandValue\\\": null,\n  \\\"name\\\": \\\"string\\\",\n  \\\"nameZh\\\": null,\n  \\\"nameEn\\\": null,\n  \\\"description\\\": null,\n  \\\"declarationElements\\\": null,\n  \\\"unit\\\": \\\"PCS\\\",\n  \\\"hsCode\\\": null,\n  \\\"unitNetWeight\\\": \\\"string\\\",\n  \\\"unitGrossWeight\\\": \\\"string\\\",\n  \\\"unitVolume\\\": \\\"string\\\",\n  \\\"discountPercent\\\": \\\"string\\\",\n  \\\"status\\\": \\\"active\\\",\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_supplier_products","summary":"Update supplier product","description":"Updates a library row; requires the expected version for optimistic locking. The supplier cannot be changed — a code is only unique per supplier.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchema"},"example":{"supplierSku":"string","itemNo":null,"brandValue":null,"name":"string","nameZh":null,"nameEn":null,"description":null,"declarationElements":null,"unit":"PCS","hsCode":null,"unitNetWeight":"string","unitGrossWeight":"string","unitVolume":"string","discountPercent":"string","status":"active","notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a library row; requires the expected version for optimistic locking. The supplier cannot be changed — a code is only unique per supplier."},"responses":{"200":{"description":"Supplier Product updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierSku\\\": \\\"string\\\",\n  \\\"itemNo\\\": null,\n  \\\"brandValue\\\": null,\n  \\\"name\\\": \\\"string\\\",\n  \\\"nameZh\\\": null,\n  \\\"nameEn\\\": null,\n  \\\"description\\\": null,\n  \\\"declarationElements\\\": null,\n  \\\"unit\\\": \\\"PCS\\\",\n  \\\"hsCode\\\": null,\n  \\\"unitNetWeight\\\": \\\"string\\\",\n  \\\"unitGrossWeight\\\": \\\"string\\\",\n  \\\"unitVolume\\\": \\\"string\\\",\n  \\\"discountPercent\\\": \\\"string\\\",\n  \\\"status\\\": \\\"active\\\",\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"purchasing_delete_purchasing_supplier_products","summary":"Delete supplier product","description":"Soft-deletes a library row. Purchase order lines that reference it keep their frozen snapshot, and the code stays owned until the row is restored.","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Supplier Product deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/purchasing/supplier-products/sync-fields":{"post":{"operationId":"purchasing_post_purchasing_supplier_products_sync_fields","summary":"Push a supplier product’s current values onto its linked product","description":"Re-applies the same non-empty/changed field mapping and the `purchase`-tier price merge that promotion uses, on the product this row is already linked to — `promote` itself is idempotent (`skipped`) once a link exists. Reports `fieldsChanged` and `priceChanged`. The catalog link, the `internal`/`export` price tiers and the variants are never touched. An unlinked row (422 `supplier_product_not_linked`) and a deleted product (422 `product_deleted`) are refused. Requires `purchasing.supplier-products.promote`, because it writes the master.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Fields synced","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchema"},"example":{"productId":"00000000-0000-4000-8000-000000000000","fieldsChanged":["string"],"priceChanged":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The referenced record or state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/supplier-products/sync-fields\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/purchasing/suppliers":{"get":{"operationId":"purchasing_get_purchasing_suppliers","summary":"List suppliers","description":"Returns a paginated collection of suppliers in the current organization scope.","tags":["Purchasing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters2Schema"},"example":"string"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters6Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetParameters7Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated suppliers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":"string","contactName":null,"phone":null,"email":null,"address":null,"defaultCurrencyCode":"string","brandValue":null,"isActive":true,"notes":null,"tenant_id":null,"organization_id":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/purchasing/suppliers?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"purchasing_post_purchasing_suppliers","summary":"Create supplier","description":"Creates a supplier in the caller’s organization.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","contactName":null,"phone":null,"email":null,"address":null,"defaultCurrencyCode":"CNY","brandValue":null,"isActive":true,"notes":null}}},"description":"Creates a supplier in the caller’s organization."},"responses":{"201":{"description":"Supplier created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/purchasing/suppliers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"contactName\\\": null,\n  \\\"phone\\\": null,\n  \\\"email\\\": null,\n  \\\"address\\\": null,\n  \\\"defaultCurrencyCode\\\": \\\"CNY\\\",\n  \\\"brandValue\\\": null,\n  \\\"isActive\\\": true,\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"purchasing_put_purchasing_suppliers","summary":"Update supplier","description":"Updates a supplier; requires the expected version for optimistic locking.","tags":["Purchasing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","contactName":null,"phone":null,"email":null,"address":null,"brandValue":null,"notes":null}}},"description":"Updates a supplier; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Supplier updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/purchasing/suppliers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"contactName\\\": null,\n  \\\"phone\\\": null,\n  \\\"email\\\": null,\n  \\\"address\\\": null,\n  \\\"brandValue\\\": null,\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"purchasing_delete_purchasing_suppliers","summary":"Delete supplier","description":"Soft-deletes a supplier.","tags":["Purchasing"],"parameters":[],"responses":{"200":{"description":"Supplier deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/purchasing/suppliers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/cross_border/shipments/allocations":{"get":{"operationId":"cross_border_get_cross_border_shipments_allocations","summary":"List shipment allocations","description":"Returns a paginated collection of shipment allocations in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"shipmentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment allocations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","purchaseOrderId":"00000000-0000-4000-8000-000000000000","purchaseOrderNumber":null,"purchaseOrderLineId":"00000000-0000-4000-8000-000000000000","catalogProductId":"00000000-0000-4000-8000-000000000000","productTitle":null,"productSku":null,"supplierSku":null,"quantity":"string","receivedQuantity":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/allocations?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/cross_border/shipments/cancel":{"get":{"operationId":"cross_border_get_cross_border_shipments_cancel","summary":"List shipment cancellations","description":"Returns a paginated collection of shipment cancellations in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment cancellations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/cancel?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"cross_border_post_cross_border_shipments_cancel","summary":"Create shipment cancellation","description":"Cancels a draft or in-transit shipment; a reason is required. Cancelled shipments release their allocations.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","reason":"string"}}},"description":"Cancels a draft or in-transit shipment; a reason is required. Cancelled shipments release their allocations."},"responses":{"201":{"description":"Shipment Cancellation created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"reason\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/cross_border/shipments/depart":{"get":{"operationId":"cross_border_get_cross_border_shipments_depart","summary":"List shipment departures","description":"Returns a paginated collection of shipment departures in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment departures","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/depart?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"cross_border_post_cross_border_shipments_depart","summary":"Create shipment departure","description":"Departs a draft shipment: assigns its number, records the first milestone and advances allocated purchase orders to shipped.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Departs a draft shipment: assigns its number, records the first milestone and advances allocated purchase orders to shipped."},"responses":{"201":{"description":"Shipment Departure created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/depart\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/cross_border/shipments/documents":{"get":{"operationId":"cross_border_get_cross_border_shipments_documents","summary":"List export documents","description":"Returns a paginated collection of export documents in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"shipmentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"docType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters2Schema"},"example":"customs_declaration"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated export documents","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","shipmentId":"00000000-0000-4000-8000-000000000000","purchaseOrderId":null,"docType":"customs_declaration","documentNumber":null,"issuedAt":null,"attachmentId":null,"note":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/documents?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"cross_border_post_cross_border_shipments_documents","summary":"Create export document","description":"Records an export document on a shipment; the file itself lives in attachments.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchema"},"example":{"shipmentId":"00000000-0000-4000-8000-000000000000","docType":"customs_declaration","documentNumber":null,"issuedAt":null,"purchaseOrderId":null,"attachmentId":null,"note":null}}},"description":"Records an export document on a shipment; the file itself lives in attachments."},"responses":{"201":{"description":"Export Document created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"shipmentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"docType\\\": \\\"customs_declaration\\\",\n  \\\"documentNumber\\\": null,\n  \\\"issuedAt\\\": null,\n  \\\"purchaseOrderId\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"cross_border_put_cross_border_shipments_documents","summary":"Update export document","description":"Updates an export document.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchema"},"example":{"documentNumber":null,"issuedAt":null,"purchaseOrderId":null,"attachmentId":null,"note":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates an export document."},"responses":{"200":{"description":"Export Document updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"documentNumber\\\": null,\n  \\\"issuedAt\\\": null,\n  \\\"purchaseOrderId\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"cross_border_delete_cross_border_shipments_documents","summary":"Delete export document","description":"Soft-deletes an export document.","tags":["Cross-Border"],"parameters":[],"responses":{"200":{"description":"Export Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/cross_border/shipments/milestones":{"get":{"operationId":"cross_border_get_cross_border_shipments_milestones","summary":"List shipment milestones","description":"Returns a paginated collection of shipment milestones in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"shipmentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment milestones","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","milestone":"picked_up","occurredAt":null,"note":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/milestones?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"cross_border_post_cross_border_shipments_milestones","summary":"Create shipment milestone","description":"Records the next transit milestone; a stage earlier than the current one is rejected.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchema"},"example":{"shipmentId":"00000000-0000-4000-8000-000000000000","milestone":"picked_up","occurredAt":null,"note":null}}},"description":"Records the next transit milestone; a stage earlier than the current one is rejected."},"responses":{"201":{"description":"Shipment Milestone created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/milestones\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"shipmentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"milestone\\\": \\\"picked_up\\\",\n  \\\"occurredAt\\\": null,\n  \\\"note\\\": null\n}\""}],"x-require-auth":true}},"/cross_border/shipments/receive":{"get":{"operationId":"cross_border_get_cross_border_shipments_receive","summary":"List shipment receipts","description":"Returns a paginated collection of shipment receipts in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated shipment receipts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/receive?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"cross_border_post_cross_border_shipments_receive","summary":"Create shipment receipt","description":"Receives an in-transit shipment: books stock in wms and raises the received quantity of each allocated purchase-order line.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","warehouseId":"00000000-0000-4000-8000-000000000000","locationId":"00000000-0000-4000-8000-000000000000"}}},"description":"Receives an in-transit shipment: books stock in wms and raises the received quantity of each allocated purchase-order line."},"responses":{"201":{"description":"Shipment Receipt created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments/receive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"warehouseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"locationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/cross_border/shipments":{"get":{"operationId":"cross_border_get_cross_border_shipments","summary":"List shipments","description":"Returns a paginated collection of shipments in the current organization scope.","tags":["Cross-Border"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters2Schema"},"example":"string"},{"name":"containerNumber","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters3Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters4Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters6Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters7Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetParameters8Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated shipments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":null,"status":"draft","carrierName":null,"departurePort":null,"containerType":null,"containerNumber":null,"sealNumber":null,"bookingNumber":null,"currentMilestone":null,"etd":null,"eta":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/cross_border/shipments?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"cross_border_post_cross_border_shipments","summary":"Create shipment","description":"Creates a draft shipment with its purchase-order allocations.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"carrierName":null,"forwarderContact":null,"departurePort":null,"containerType":null,"containerNumber":null,"sealNumber":null,"bookingNumber":null,"destinationWarehouseId":null,"destinationLocationId":null,"etd":null,"eta":null,"notes":null,"allocations":[{"purchaseOrderLineId":"00000000-0000-4000-8000-000000000000","quantity":1}]}}},"description":"Creates a draft shipment with its purchase-order allocations."},"responses":{"201":{"description":"Shipment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/cross_border/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"carrierName\\\": null,\n  \\\"forwarderContact\\\": null,\n  \\\"departurePort\\\": null,\n  \\\"containerType\\\": null,\n  \\\"containerNumber\\\": null,\n  \\\"sealNumber\\\": null,\n  \\\"bookingNumber\\\": null,\n  \\\"destinationWarehouseId\\\": null,\n  \\\"destinationLocationId\\\": null,\n  \\\"etd\\\": null,\n  \\\"eta\\\": null,\n  \\\"notes\\\": null,\n  \\\"allocations\\\": [\n    {\n      \\\"purchaseOrderLineId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"quantity\\\": 1\n    }\n  ]\n}\""}],"x-require-auth":true},"put":{"operationId":"cross_border_put_cross_border_shipments","summary":"Update shipment","description":"Updates a draft shipment; requires the expected version for optimistic locking.","tags":["Cross-Border"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchema"},"example":{"carrierName":null,"forwarderContact":null,"departurePort":null,"containerType":null,"containerNumber":null,"sealNumber":null,"bookingNumber":null,"destinationWarehouseId":null,"destinationLocationId":null,"etd":null,"eta":null,"notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a draft shipment; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Shipment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/cross_border/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"carrierName\\\": null,\n  \\\"forwarderContact\\\": null,\n  \\\"departurePort\\\": null,\n  \\\"containerType\\\": null,\n  \\\"containerNumber\\\": null,\n  \\\"sealNumber\\\": null,\n  \\\"bookingNumber\\\": null,\n  \\\"destinationWarehouseId\\\": null,\n  \\\"destinationLocationId\\\": null,\n  \\\"etd\\\": null,\n  \\\"eta\\\": null,\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"cross_border_delete_cross_border_shipments","summary":"Delete shipment","description":"Soft-deletes a draft or cancelled shipment.","tags":["Cross-Border"],"parameters":[],"responses":{"200":{"description":"Shipment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/cross_border/shipments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/logs":{"get":{"operationId":"integrations_get_integrations_logs","summary":"List integration logs","tags":["Integrations"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/integrations/logs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations":{"get":{"operationId":"integrations_get_integrations","summary":"List integrations","description":"Returns a paginated collection of integrations.","tags":["Integrations"],"parameters":[{"name":"q","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters0Schema"},"example":"string"},{"name":"category","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters1Schema"},"example":"string"},{"name":"bundleId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters2Schema"},"example":"string"},{"name":"isEnabled","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters3Schema"},"example":true},{"name":"healthStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters4Schema"},"example":"healthy"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters5Schema"},"example":"title"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters6Schema"},"example":"asc"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters7Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters8Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated integrations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","title":"string","description":null,"category":null,"tags":["string"],"hub":null,"providerKey":null,"bundleId":null,"author":null,"company":null,"version":null,"hasCredentials":true,"isEnabled":true,"apiVersion":null,"healthStatus":"healthy","lastHealthCheckedAt":null,"lastHealthLatencyMs":null,"enabledAt":null,"analytics":{"lastActivityAt":null,"totalCount":1,"errorCount":1,"errorRate":1,"dailyCounts":[1]}}],"total":1,"totalPages":1,"bundles":[{"id":"string","title":"string","description":"string","icon":null,"integrationCount":1,"enabledCount":1}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/integrations?order=asc&page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/{id}/credentials":{"get":{"operationId":"integrations_get_integrations_id_credentials","summary":"Get or save integration credentials","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/integrations/:id/credentials\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"integrations_put_integrations_id_credentials","summary":"Get or save integration credentials","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/integrations/:id/credentials\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/{id}/health":{"post":{"operationId":"integrations_post_integrations_id_health","summary":"Run health check for an integration","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/integrations/:id/health\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/{id}":{"get":{"operationId":"integrations_get_integrations_id","summary":"Get integration detail","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/integrations/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/{id}/state":{"put":{"operationId":"integrations_put_integrations_id_state","summary":"Update integration state","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/integrations/:id/state\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/{id}/version":{"put":{"operationId":"integrations_put_integrations_id_version","summary":"Change integration API version","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/integrations/:id/version\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/mappings":{"get":{"operationId":"data_sync_get_data_sync_mappings","summary":"List or create field mappings","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/mappings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"data_sync_post_data_sync_mappings","summary":"List or create field mappings","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/mappings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/schedules":{"get":{"operationId":"data_sync_get_data_sync_schedules","summary":"List or create sync schedules","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/schedules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"data_sync_post_data_sync_schedules","summary":"List or create sync schedules","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/schedules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/mappings/{id}":{"get":{"operationId":"data_sync_get_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"data_sync_put_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"data_sync_delete_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/runs/{id}":{"get":{"operationId":"data_sync_get_data_sync_runs_id","summary":"Get sync run detail","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/runs/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/schedules/{id}":{"get":{"operationId":"data_sync_get_data_sync_schedules_id","summary":"Manage a sync schedule","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"data_sync_put_data_sync_schedules_id","summary":"Manage a sync schedule","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"data_sync_delete_data_sync_schedules_id","summary":"Manage a sync schedule","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/options":{"get":{"operationId":"data_sync_get_data_sync_options","summary":"List data sync integration options","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/run":{"post":{"operationId":"data_sync_post_data_sync_run","summary":"Start a data sync run","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/run\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/runs/{id}/cancel":{"post":{"operationId":"data_sync_post_data_sync_runs_id_cancel","summary":"Cancel a running sync","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/runs/:id/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/runs/{id}/retry":{"post":{"operationId":"data_sync_post_data_sync_runs_id_retry","summary":"Retry a failed sync run","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/runs/:id/retry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/runs":{"get":{"operationId":"data_sync_get_data_sync_runs","summary":"List sync runs","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/data_sync/runs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/data_sync/validate":{"post":{"operationId":"data_sync_post_data_sync_validate","summary":"Validate sync connection","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/data_sync/validate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/platform_ops/channels":{"get":{"operationId":"platform_ops_get_platform_ops_channels","summary":"List channels","description":"Returns a paginated collection of channels in the current organization scope.","tags":["Platform Ops"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters2Schema"},"example":"string"},{"name":"platform","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters3Schema"},"example":"string"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters6Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters7Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetParameters8Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated channels","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","code":"string","platform":"string","externalAccountId":null,"currencyCode":"string","isActive":true,"notes":null,"tenant_id":null,"organization_id":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/platform_ops/channels?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"platform_ops_post_platform_ops_channels","summary":"Create channel","description":"Creates a storefront binding in the caller’s organization; the code is unique per organization.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","code":"string","platform":"string","externalAccountId":null,"notes":null}}},"description":"Creates a storefront binding in the caller’s organization; the code is unique per organization."},"responses":{"201":{"description":"Channel created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/platform_ops/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"platform\\\": \\\"string\\\",\n  \\\"externalAccountId\\\": null,\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"platform_ops_put_platform_ops_channels","summary":"Update channel","description":"Updates a storefront binding; renaming the code to one already in use is rejected with 409.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchema"},"example":{"externalAccountId":null,"notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a storefront binding; renaming the code to one already in use is rejected with 409."},"responses":{"200":{"description":"Channel updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/platform_ops/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"externalAccountId\\\": null,\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"platform_ops_delete_platform_ops_channels","summary":"Delete channel","description":"Soft-deletes a storefront binding; its orders, settlements and reconciliation items stay in the database.","tags":["Platform Ops"],"parameters":[],"responses":{"200":{"description":"Channel deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/platform_ops/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/platform_ops/orders/ingest":{"post":{"operationId":"platform_ops_post_platform_ops_orders_ingest","summary":"Ingest a batch of platform orders","description":"Upserts each order by `(channel, external order id)`. A re-posted batch reports `unchanged` and writes nothing. Amounts and statuses are stored verbatim as the platform reported them.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchema"},"example":{"channelId":"00000000-0000-4000-8000-000000000000","orders":[{"externalOrderId":"string","status":null,"placedAt":null,"shipmentId":null,"shipmentNumber":null}]}}},"description":"The channel and the orders to land. Up to 500 orders per request."},"responses":{"200":{"description":"Per-batch counts: rows created, rows updated, rows already current.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"created":1,"updated":1,"unchanged":1}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing the channels.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Unknown channel in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Malformed payload or a duplicated external order id in the batch","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/platform_ops/orders/ingest\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"channelId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"orders\\\": [\n    {\n      \\\"externalOrderId\\\": \\\"string\\\",\n      \\\"status\\\": null,\n      \\\"placedAt\\\": null,\n      \\\"shipmentId\\\": null,\n      \\\"shipmentNumber\\\": null\n    }\n  ]\n}\""}],"x-require-auth":true}},"/platform_ops/orders":{"get":{"operationId":"platform_ops_get_platform_ops_orders","summary":"List order mirrors","description":"The platform’s own view of its orders, stored verbatim. Amounts and status are reported, not recomputed, so a mismatch stays visible to reconciliation.","tags":["Platform Ops"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters3Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters6Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated order mirrors","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","channelId":"00000000-0000-4000-8000-000000000000","externalOrderId":"string","status":null,"currencyCode":"string","grossAmount":"string","feeAmount":"string","netAmount":"string","placedAt":null,"shipmentNumber":null,"syncedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/platform_ops/orders?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/platform_ops/reconciliation/ignore":{"post":{"operationId":"platform_ops_post_platform_ops_reconciliation_ignore","summary":"Ignore a reconciliation item","description":"Closes an open item as ignored and records the note as its justification. Ignored items stay in the trail and their problem does not raise a new item until it is resolved or a fresh mismatch is found.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","note":"string"}}},"description":"The item id and the note explaining why the difference is accepted."},"responses":{"200":{"description":"The item is ignored.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"status":"ignored"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing the reconciliation.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Unknown item in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Missing note, or the item is already resolved or ignored","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/platform_ops/reconciliation/ignore\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"note\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/platform_ops/reconciliation/resolve":{"post":{"operationId":"platform_ops_post_platform_ops_reconciliation_resolve","summary":"Resolve a reconciliation item","description":"Closes an open item as resolved and records the note as its justification. The item keeps its evidence and never reopens; a problem that comes back raises a new item.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","note":"string"}}},"description":"The item id and the note explaining the decision."},"responses":{"200":{"description":"The item is resolved.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"status":"resolved"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing the reconciliation.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Unknown item in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Missing note, or the item is already resolved or ignored","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/platform_ops/reconciliation/resolve\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"note\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/platform_ops/reconciliation":{"get":{"operationId":"platform_ops_get_platform_ops_reconciliation","summary":"List reconciliation items","description":"One disagreement per `(channel, external ref, kind)`, awaiting an operator decision. A resolved item never reopens: a problem that comes back raises a fresh item, so the original problem and its resolution both stay in the trail.","tags":["Platform Ops"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters2Schema"},"example":"missing_in_erp"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters3Schema"},"example":"open"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters6Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated reconciliation items","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","channelId":"00000000-0000-4000-8000-000000000000","kind":"missing_in_erp","externalRef":"string","settlementId":null,"orderMirrorId":null,"expectedAmount":null,"actualAmount":null,"currencyCode":null,"status":"open","note":null,"resolvedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/platform_ops/reconciliation?status=open&page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/platform_ops/settlements/import":{"post":{"operationId":"platform_ops_post_platform_ops_settlements_import","summary":"Import a platform settlement with its lines","description":"Upserts the settlement by `(channel, external settlement id)` and stores its lines. Each line is matched against the order mirror; a missing order, an amount mismatch and a duplicated line each raise at most one open reconciliation item, and re-importing the same statement raises nothing new.","tags":["Platform Ops"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchema"},"example":{"channelId":"00000000-0000-4000-8000-000000000000","settlement":{"externalSettlementId":"string","periodStart":null,"periodEnd":null,"receivedAt":null},"lines":[{"externalOrderId":"string"}]}}},"description":"The channel, the settlement header, and its lines (up to 2000)."},"responses":{"200":{"description":"The stored settlement id, the number of lines written, how many reconciliation items were raised, and how many lines matched an order mirror.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"settlementId":"00000000-0000-4000-8000-000000000000","lines":1,"raised":1,"linked":1}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing the settlements.manage feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Unknown channel in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"Malformed payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/platform_ops/settlements/import\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"channelId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"settlement\\\": {\n    \\\"externalSettlementId\\\": \\\"string\\\",\n    \\\"periodStart\\\": null,\n    \\\"periodEnd\\\": null,\n    \\\"receivedAt\\\": null\n  },\n  \\\"lines\\\": [\n    {\n      \\\"externalOrderId\\\": \\\"string\\\"\n    }\n  ]\n}\""}],"x-require-auth":true}},"/platform_ops/settlements/lines":{"get":{"operationId":"platform_ops_get_platform_ops_settlements_lines","summary":"List settlement lines","description":"One order’s contribution to a payout. A line whose `orderMirrorId` is null never matched an order mirror — that is what raises a `missing_in_erp` reconciliation item.","tags":["Platform Ops"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"settlementId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated settlement lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","settlementId":"00000000-0000-4000-8000-000000000000","externalOrderId":"string","orderMirrorId":null,"grossAmount":"string","feeAmount":"string","netAmount":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/platform_ops/settlements/lines?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/platform_ops/settlements":{"get":{"operationId":"platform_ops_get_platform_ops_settlements","summary":"List settlements","description":"The platform’s payout statements. `imported` until the settlement has been reconciled; amounts are what the platform paid out, not a recomputation of our books.","tags":["Platform Ops"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"channelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters2Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters4Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters5Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated settlements","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","channelId":"00000000-0000-4000-8000-000000000000","externalSettlementId":"string","periodStart":null,"periodEnd":null,"currencyCode":"string","grossAmount":"string","feeAmount":"string","netAmount":"string","status":"string","receivedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/platform_ops/settlements?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/products/categories":{"get":{"operationId":"products_get_products_categories","summary":"List product categories","description":"Returns a paginated collection of product categories in the current organization scope.","tags":["Products"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters3Schema"},"example":"string"},{"name":"parentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"rootId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters7Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters8Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters9Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetParameters10Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated product categories","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","nameEn":null,"parentId":null,"rootId":null,"treePath":null,"depth":1,"ancestorIds":["string"],"childIds":["string"],"descendantIds":["string"],"sortOrder":1,"isActive":true,"organizationId":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/categories?page=1&pageSize=50&sortField=tree_path&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"products_post_products_categories","summary":"Create product category","description":"Creates a category and rebuilds the organization’s category hierarchy.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","nameEn":null,"parentId":null,"sortOrder":0,"isActive":true}}},"description":"Creates a category and rebuilds the organization’s category hierarchy."},"responses":{"201":{"description":"Product Category created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/products/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"nameEn\\\": null,\n  \\\"parentId\\\": null,\n  \\\"sortOrder\\\": 0,\n  \\\"isActive\\\": true\n}\""}],"x-require-auth":true},"put":{"operationId":"products_put_products_categories","summary":"Update product category","description":"Updates a category; a move under itself or a descendant is rejected with 422.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchema"},"example":{"nameEn":null,"parentId":null,"sortOrder":0,"isActive":true,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a category; a move under itself or a descendant is rejected with 422."},"responses":{"200":{"description":"Product Category updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/products/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"nameEn\\\": null,\n  \\\"parentId\\\": null,\n  \\\"sortOrder\\\": 0,\n  \\\"isActive\\\": true,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"products_delete_products_categories","summary":"Delete product category","description":"Soft-deletes an empty, unreferenced category and rebuilds the hierarchy.","tags":["Products"],"parameters":[],"responses":{"200":{"description":"Product Category deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/products/categories\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/products/items":{"get":{"operationId":"products_get_products_items","summary":"List products","description":"Returns a paginated collection of products in the current organization scope.","tags":["Products"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters3Schema"},"example":"string"},{"name":"typeId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"categoryId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters6Schema"},"example":"active"},{"name":"containsLithiumBattery","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters9Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters10Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetParameters11Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated products","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","sku":"string","name":"string","nameEn":null,"brand":"string","manufacturerModel":null,"typeId":null,"categoryId":null,"unit":"string","status":"active","containsLithiumBattery":true,"hsCode":null,"countryOfOriginCode":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/items?status=active&page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"products_post_products_items","summary":"Create product","description":"Creates a product in the caller’s organization.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchema"},"example":{"sku":"string","name":"string","nameEn":null,"brand":"","series":null,"manufacturerModel":null,"typeId":null,"categoryId":null,"specSummary":null,"barcode":null,"unit":"PCS","hsCode":null,"cnCode":null,"countryOfOriginCode":null,"containsLithiumBattery":false,"certifications":null,"status":"active","catalogProductId":null,"notes":null}}},"description":"Creates a product in the caller’s organization."},"responses":{"201":{"description":"Product created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/products/items\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"sku\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"nameEn\\\": null,\n  \\\"brand\\\": \\\"\\\",\n  \\\"series\\\": null,\n  \\\"manufacturerModel\\\": null,\n  \\\"typeId\\\": null,\n  \\\"categoryId\\\": null,\n  \\\"specSummary\\\": null,\n  \\\"barcode\\\": null,\n  \\\"unit\\\": \\\"PCS\\\",\n  \\\"hsCode\\\": null,\n  \\\"cnCode\\\": null,\n  \\\"countryOfOriginCode\\\": null,\n  \\\"containsLithiumBattery\\\": false,\n  \\\"certifications\\\": null,\n  \\\"status\\\": \\\"active\\\",\n  \\\"catalogProductId\\\": null,\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"products_put_products_items","summary":"Update product","description":"Updates a product; requires the expected version for optimistic locking.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchema"},"example":{"nameEn":null,"brand":"","series":null,"manufacturerModel":null,"typeId":null,"categoryId":null,"specSummary":null,"barcode":null,"unit":"PCS","hsCode":null,"cnCode":null,"countryOfOriginCode":null,"containsLithiumBattery":false,"certifications":null,"status":"active","catalogProductId":null,"notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a product; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Product updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/products/items\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"nameEn\\\": null,\n  \\\"brand\\\": \\\"\\\",\n  \\\"series\\\": null,\n  \\\"manufacturerModel\\\": null,\n  \\\"typeId\\\": null,\n  \\\"categoryId\\\": null,\n  \\\"specSummary\\\": null,\n  \\\"barcode\\\": null,\n  \\\"unit\\\": \\\"PCS\\\",\n  \\\"hsCode\\\": null,\n  \\\"cnCode\\\": null,\n  \\\"countryOfOriginCode\\\": null,\n  \\\"containsLithiumBattery\\\": false,\n  \\\"certifications\\\": null,\n  \\\"status\\\": \\\"active\\\",\n  \\\"catalogProductId\\\": null,\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"products_delete_products_items","summary":"Delete product","description":"Soft-deletes a product. Contracts keep their own snapshots.","tags":["Products"],"parameters":[],"responses":{"200":{"description":"Product deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/products/items\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/products/prices":{"get":{"operationId":"products_get_products_prices","summary":"List product prices","description":"Returns a paginated collection of product prices in the current organization scope.","tags":["Products"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"priceTier","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters2Schema"},"example":"purchase"},{"name":"currencyCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters3Schema"},"example":"string"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters6Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters7Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters8Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated product prices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","productId":"00000000-0000-4000-8000-000000000000","priceTier":"purchase","currencyCode":"string","minQuantity":1,"unitPrice":"string","startsAt":null,"endsAt":null,"isActive":true,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/prices?page=1&pageSize=50&sortField=price_tier&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"products_post_products_prices","summary":"Create product price","description":"Replaces a product’s whole price set (upsert by tier/currency/min quantity, missing rows deactivated).","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchema"},"example":{"productId":"00000000-0000-4000-8000-000000000000","rows":[{"id":null,"priceTier":"purchase","currencyCode":"string","minQuantity":1,"startsAt":null,"endsAt":null,"isActive":true}]}}},"description":"Replaces a product’s whole price set (upsert by tier/currency/min quantity, missing rows deactivated)."},"responses":{"201":{"description":"Product Price created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/products/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"productId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"rows\\\": [\n    {\n      \\\"id\\\": null,\n      \\\"priceTier\\\": \\\"purchase\\\",\n      \\\"currencyCode\\\": \\\"string\\\",\n      \\\"minQuantity\\\": 1,\n      \\\"startsAt\\\": null,\n      \\\"endsAt\\\": null,\n      \\\"isActive\\\": true\n    }\n  ]\n}\""}],"x-require-auth":true},"put":{"operationId":"products_put_products_prices","summary":"Update product price","description":"Replaces a product’s whole price set (upsert by tier/currency/min quantity, missing rows deactivated).","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchema"},"example":{"productId":"00000000-0000-4000-8000-000000000000","rows":[{"id":null,"priceTier":"purchase","currencyCode":"string","minQuantity":1,"startsAt":null,"endsAt":null,"isActive":true}]}}},"description":"Replaces a product’s whole price set (upsert by tier/currency/min quantity, missing rows deactivated)."},"responses":{"200":{"description":"Product Price updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/products/prices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"productId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"rows\\\": [\n    {\n      \\\"id\\\": null,\n      \\\"priceTier\\\": \\\"purchase\\\",\n      \\\"currencyCode\\\": \\\"string\\\",\n      \\\"minQuantity\\\": 1,\n      \\\"startsAt\\\": null,\n      \\\"endsAt\\\": null,\n      \\\"isActive\\\": true\n    }\n  ]\n}\""}],"x-require-auth":true}},"/products/types":{"get":{"operationId":"products_get_products_types","summary":"List product types","description":"Returns a paginated collection of product types in the current organization scope.","tags":["Products"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters3Schema"},"example":"string"},{"name":"isActive","in":"query","required":true,"schema":{}},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters6Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters7Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetParameters8Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated product types","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","nameEn":null,"sortOrder":1,"isActive":true,"organizationId":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/types?page=1&pageSize=50&sortField=sort_order&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"products_post_products_types","summary":"Create product type","description":"Creates a product type in the caller’s organization.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","nameEn":null,"sortOrder":0,"isActive":true}}},"description":"Creates a product type in the caller’s organization."},"responses":{"201":{"description":"Product Type created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/products/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"nameEn\\\": null,\n  \\\"sortOrder\\\": 0,\n  \\\"isActive\\\": true\n}\""}],"x-require-auth":true},"put":{"operationId":"products_put_products_types","summary":"Update product type","description":"Updates a product type; requires the expected version for optimistic locking.","tags":["Products"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchema"},"example":{"nameEn":null,"sortOrder":0,"isActive":true,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a product type; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Product Type updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/products/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"nameEn\\\": null,\n  \\\"sortOrder\\\": 0,\n  \\\"isActive\\\": true,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"products_delete_products_types","summary":"Delete product type","description":"Soft-deletes a product type that no product references.","tags":["Products"],"parameters":[],"responses":{"200":{"description":"Product Type deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/products/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/products/variants/options":{"get":{"operationId":"products_get_products_variants_options","summary":"List product variant options","description":"Scoped SKU option source for pickers: `<product name> · <variant code> — <variant name>`, filtered by code/name/barcode, by ids or by product.","tags":["Products"],"parameters":[],"responses":{"200":{"description":"Available product variant options.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"value":"string","label":"string"}]}}}},"400":{"description":"Malformed product id or missing organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Missing products.items.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/variants/options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/products/items/{id}":{"get":{"operationId":"products_get_products_items_id","summary":"Get one product with its variants","description":"Scoped read: the product header plus every live variant (SKU) it carries.","tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetParameters0Schema"}}],"responses":{"200":{"description":"The product aggregate.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","sku":"string","name":"string","status":"string","catalogProductId":null,"variants":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","barcode":null,"status":"active","isDefault":true,"attributes":null,"sortOrder":1}],"updatedAt":null}}}}},"400":{"description":"Malformed id or missing organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Product not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/products/items/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/product_codes/aliases":{"post":{"operationId":"product_codes_post_product_codes_aliases","summary":"Record a retired product code","description":"Stores the mapping from a code an operator retired to the record it belonged to. The target is checked for existence and scope inside the writing transaction (the id is a cross-module scalar with no foreign key). Requires `product_codes.rules.manage`.","tags":["Product codes"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchema"},"example":{"aliasCode":"string","targetKind":"product","targetId":"00000000-0000-4000-8000-000000000000","note":null}}}},"responses":{"201":{"description":"Alias recorded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid input, unknown code-list value, or no organization selected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"The caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"The rule or record was not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"A stale version was submitted, or the name is already taken","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The rule cannot produce a valid product code","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/product_codes/aliases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"aliasCode\\\": \\\"string\\\",\n  \\\"targetKind\\\": \\\"product\\\",\n  \\\"targetId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"note\\\": null\n}\""}],"x-require-auth":true}},"/product_codes/generate":{"post":{"operationId":"product_codes_post_product_codes_generate","summary":"Generate a product code","description":"Formats the next code for the rule and code-list values given. `dryRun: true` returns the code the next serial would produce without consuming it; `dryRun: false` writes the number into the issuance ledger, where it stays spent even if the row is never saved — a serial is never reused. The rule is the explicit `ruleId`, else the single active `generate` rule (several active rules are a 400 `rule_ambiguous`, none a 404 `rule_not_found`).","tags":["Product codes"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchema"},"example":{"brandValue":"string","dryRun":false}}}},"responses":{"200":{"description":"Code issued (or previewed)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchema"},"example":{"code":"string","ruleId":"00000000-0000-4000-8000-000000000000","ruleName":"string","dryRun":true,"ledgerId":null,"nextSerial":1,"parts":[{"key":"string","kind":"string","value":"string","label":null,"known":true}]}}}},"400":{"description":"Invalid input, unknown code-list value, or no organization selected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"The caller lacks the required feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"The rule or record was not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"A stale version was submitted, or the name is already taken","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The rule cannot produce a valid product code","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/product_codes/generate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"brandValue\\\": \\\"string\\\",\n  \\\"dryRun\\\": false\n}\""}],"x-require-auth":true}},"/product_codes/parse":{"get":{"operationId":"product_codes_get_product_codes_parse","summary":"GET /product_codes/parse","tags":["Product codes"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesParseGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesParseGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesParseGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/product_codes/parse\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/product_codes/rules":{"get":{"operationId":"product_codes_get_product_codes_rules","summary":"List code rules","description":"Returns a paginated collection of code rules in the current organization scope.","tags":["Product codes"],"parameters":[{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters0Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters2Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters3Schema"},"example":"name"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated code rules","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","mode":"string","segments":[{}],"separator":"string","serialLength":1,"serialScope":"string","enforce":"string","isActive":true,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/product_codes/rules?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"product_codes_post_product_codes_rules","summary":"Create code rule","description":"Stores a rule after checking its worst case against the current brand and category code lists: a rule that could emit a code outside the product SKU charset is refused with the offending problem code.","tags":["Product codes"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","mode":"generate","segments":[{"kind":"dictionary","key":"string","dictionaryKey":"string","length":1,"upper":true,"join":false}],"separator":"-","serialLength":3,"serialScope":"brand_category","enforce":"warn","isActive":true}}},"description":"Stores a rule after checking its worst case against the current brand and category code lists: a rule that could emit a code outside the product SKU charset is refused with the offending problem code."},"responses":{"201":{"description":"Code rule created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/product_codes/rules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"mode\\\": \\\"generate\\\",\n  \\\"segments\\\": [\n    {\n      \\\"kind\\\": \\\"dictionary\\\",\n      \\\"key\\\": \\\"string\\\",\n      \\\"dictionaryKey\\\": \\\"string\\\",\n      \\\"length\\\": 1,\n      \\\"upper\\\": true,\n      \\\"join\\\": false\n    }\n  ],\n  \\\"separator\\\": \\\"-\\\",\n  \\\"serialLength\\\": 3,\n  \\\"serialScope\\\": \\\"brand_category\\\",\n  \\\"enforce\\\": \\\"warn\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-auth":true},"put":{"operationId":"product_codes_put_product_codes_rules","summary":"Update code rule","description":"Updates a rule; requires the rule’s expected version for optimistic locking.","tags":["Product codes"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchema"},"example":{"mode":"generate","separator":"-","serialLength":3,"serialScope":"brand_category","enforce":"warn","isActive":true,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a rule; requires the rule’s expected version for optimistic locking."},"responses":{"200":{"description":"Code rule updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/product_codes/rules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"mode\\\": \\\"generate\\\",\n  \\\"separator\\\": \\\"-\\\",\n  \\\"serialLength\\\": 3,\n  \\\"serialScope\\\": \\\"brand_category\\\",\n  \\\"enforce\\\": \\\"warn\\\",\n  \\\"isActive\\\": true,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"product_codes_delete_product_codes_rules","summary":"Delete code rule","description":"Soft-deletes a rule. Codes already issued under it keep working, and its name stays owned.","tags":["Product codes"],"parameters":[],"responses":{"200":{"description":"Code rule deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/product_codes/rules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/product_codes/sequences":{"get":{"operationId":"product_codes_get_product_codes_sequences","summary":"GET /product_codes/sequences","tags":["Product codes"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesSequencesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesSequencesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProductCodesSequencesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/product_codes/sequences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/ai-status":{"get":{"operationId":"sourcing_get_sourcing_ai_status","summary":"AI mapping availability","description":"Reports whether a model provider is configured for this deployment, and which provider and model the AI mapping assist would use. No credential is ever returned.","tags":["Sourcing"],"parameters":[],"responses":{"200":{"description":"Availability","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchema"},"example":{"available":true,"provider":null,"model":null}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/ai-status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/import-profiles":{"get":{"operationId":"sourcing_get_sourcing_import_profiles","summary":"List import profiles","description":"Returns a paginated collection of import profiles in the current organization scope.","tags":["Sourcing"],"parameters":[{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters0Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters2Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters3Schema"},"example":"name"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters4Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated import profiles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","supplierId":null,"layoutSignature":"string","sheetName":null,"headerRowIndex":1,"usageCount":1,"lastUsedAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/import-profiles?page=1&pageSize=50&sortField=updated_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"delete":{"operationId":"sourcing_delete_sourcing_import_profiles","summary":"Delete import profile","description":"Deletes a saved column mapping. The next workbook with that layout is mapped by the alias dictionary again.","tags":["Sourcing"],"parameters":[],"responses":{"200":{"description":"Import Profile deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sourcing/import-profiles\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/quote-lines":{"get":{"operationId":"sourcing_get_sourcing_quote_lines","summary":"List quotation lines","description":"Returns a paginated collection of quotation lines in the current organization scope.","tags":["Sourcing"],"parameters":[{"name":"quoteId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"rowStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters1Schema"},"example":"staged"},{"name":"selected","in":"query","required":true,"schema":{}},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters3Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters6Schema"},"example":"line_number"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated quotation lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","quoteId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"sourceRowNumber":null,"sectionLabel":null,"itemNo":null,"productName":null,"variantLabel":null,"derivedSku":null,"hsCode":null,"unit":"string","unitCost":null,"currencyCode":null,"suggestedRsp":null,"moqRaw":null,"moqQuantity":null,"cartonQuantity":null,"unitNetWeight":null,"innerPacking":null,"raw":null,"warnings":["string"],"rowStatus":"string","selected":true,"promotedProductId":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/quote-lines?quoteId=00000000-0000-4000-8000-000000000000&page=1&pageSize=50&sortField=line_number&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sourcing_post_sourcing_quote_lines","summary":"Create quotation line","description":"Adds one hand-typed line to a draft quotation.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","sectionLabel":null,"itemNo":null,"productName":null,"derivedSku":null,"hsCode":null,"description":null,"unit":"PCS","unitCost":"string","suggestedRsp":"string","moqRaw":null,"unitNetWeight":"string","selected":true}}},"description":"Adds one hand-typed line to a draft quotation."},"responses":{"201":{"description":"Quotation Line created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"sectionLabel\\\": null,\n  \\\"itemNo\\\": null,\n  \\\"productName\\\": null,\n  \\\"derivedSku\\\": null,\n  \\\"hsCode\\\": null,\n  \\\"description\\\": null,\n  \\\"unit\\\": \\\"PCS\\\",\n  \\\"unitCost\\\": \\\"string\\\",\n  \\\"suggestedRsp\\\": \\\"string\\\",\n  \\\"moqRaw\\\": null,\n  \\\"unitNetWeight\\\": \\\"string\\\",\n  \\\"selected\\\": true\n}\""}],"x-require-auth":true},"put":{"operationId":"sourcing_put_sourcing_quote_lines","summary":"Update quotation line","description":"Saves the review grid in one request (1..200 rows). Every row is version-checked before anything is written; a conflict returns 409 with the row ids to reload.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","rows":[{"id":"00000000-0000-4000-8000-000000000000","updatedAt":"string","productName":null,"unitCost":"string","sectionLabel":null}]}}},"description":"Saves the review grid in one request (1..200 rows). Every row is version-checked before anything is written; a conflict returns 409 with the row ids to reload."},"responses":{"200":{"description":"Quotation Line updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sourcing/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"rows\\\": [\n    {\n      \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"updatedAt\\\": \\\"string\\\",\n      \\\"productName\\\": null,\n      \\\"unitCost\\\": \\\"string\\\",\n      \\\"sectionLabel\\\": null\n    }\n  ]\n}\""}],"x-require-auth":true},"delete":{"operationId":"sourcing_delete_sourcing_quote_lines","summary":"Delete quotation line","description":"Removes a line from a draft quotation. A promoted line cannot be deleted.","tags":["Sourcing"],"parameters":[],"responses":{"200":{"description":"Quotation Line deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sourcing/quote-lines\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/quotes/ai-mapping":{"post":{"operationId":"sourcing_post_sourcing_quotes_ai_mapping","summary":"Suggest a column mapping with AI","description":"Sends the header row (and optionally the first three data rows) of the quotation’s stored workbook to the configured model and returns a proposed mapping. Read-only: the suggestion is applied by the operator through the remap endpoint. Returns 503 when no model provider is configured.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","includeSampleRows":true}}}},"responses":{"200":{"description":"Suggestion","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchema"},"example":{"columns":[],"notes":null,"provider":null,"model":null,"sent":{"headers":1,"sampleRows":1}}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Quotation not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"No workbook or no detectable header row","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"502":{"description":"The model call failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"503":{"description":"No model provider configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/ai-mapping\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"includeSampleRows\\\": true\n}\""}],"x-require-auth":true}},"/sourcing/quotes/approve":{"post":{"operationId":"sourcing_post_sourcing_quotes_approve","summary":"Approve a supplier quotation","description":"Freezes the quotation: assigns the organization-unique number `SQ-<year>-<4 digits>`, snapshots the supplier name, and requires at least one selected ready line and a currency present in the currency dictionary. Only a draft can be approved, and only once.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Quotation approved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":null,"status":"string","approvedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The workbook or the quotation state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/approve\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sourcing/quotes/archive":{"post":{"operationId":"sourcing_post_sourcing_quotes_archive","summary":"Archive a supplier quotation","description":"Retires an approved quotation from the working list without deleting it or its promoted lines. A draft is deleted rather than archived.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Quotation archived","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","status":"string"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The workbook or the quotation state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/archive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sourcing/quotes/parse":{"post":{"operationId":"sourcing_post_sourcing_quotes_parse","summary":"Parse an uploaded quotation workbook","description":"Reads the attachment bound to the quotation, detects its header row, section banners and footer, maps every column (saved profile → standard template → alias dictionary) and replaces the quotation’s staged lines. Refused once any line has been promoted.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","attachmentId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Workbook parsed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchema"},"example":{"quote":{"id":"00000000-0000-4000-8000-000000000000","status":"string"},"sheetName":"string","headerRowIndex":1,"unitRowIndex":null,"headerCells":["string"],"dataRowCount":1,"lineCount":1,"templateMatched":true,"matchedProfileId":null,"layoutSignature":"string","detectedCurrency":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The workbook or the quotation state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/parse\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"attachmentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/sourcing/quotes/promote":{"post":{"operationId":"sourcing_post_sourcing_quotes_promote","summary":"Promote quotation lines into the product master","description":"Creates or updates products by SKU for the selected lines and merges their `purchase` price row (currency and MOQ from the line) without touching the other price tiers. Missing product categories are created from the line’s section banner. Per-line failures are reported and do not stop the remaining lines; a second run skips what it already promoted.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","force":false}}}},"responses":{"200":{"description":"Promotion finished","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchema"},"example":{"created":1,"updated":1,"skipped":1,"failed":[{"lineId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"message":"string"}]}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The workbook or the quotation state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/promote\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"force\\\": false\n}\""}],"x-require-auth":true}},"/sourcing/quotes/remap":{"post":{"operationId":"sourcing_post_sourcing_quotes_remap","summary":"Re-map a parsed quotation workbook","description":"Re-reads the stored workbook with the mapping the operator confirmed in the wizard (header row, per-column target fields, section rules) and rebuilds the staged lines. Optionally saves the mapping as a reusable profile for this layout.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchema"},"example":{"quoteId":"00000000-0000-4000-8000-000000000000","sheetName":"string","headerRowIndex":1,"columnMap":{"key":{"sourceIndex":1,"sourceHeader":"string"}},"sectionRules":{"useSections":true,"categoryFromSection":true},"saveProfile":false}}}},"responses":{"200":{"description":"Lines rebuilt","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchema"},"example":{"quote":{"id":"00000000-0000-4000-8000-000000000000","status":"string"},"sheetName":"string","headerRowIndex":1,"columns":[],"lineCount":1,"matchedProfileId":null,"layoutSignature":"string"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Record not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Concurrent change or illegal state","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The workbook or the quotation state cannot be used","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/remap\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"quoteId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"sheetName\\\": \\\"string\\\",\n  \\\"headerRowIndex\\\": 1,\n  \\\"columnMap\\\": {\n    \\\"key\\\": {\n      \\\"sourceIndex\\\": 1,\n      \\\"sourceHeader\\\": \\\"string\\\"\n    }\n  },\n  \\\"sectionRules\\\": {\n    \\\"useSections\\\": true,\n    \\\"categoryFromSection\\\": true\n  },\n  \\\"saveProfile\\\": false\n}\""}],"x-require-auth":true}},"/sourcing/quotes":{"get":{"operationId":"sourcing_get_sourcing_quotes","summary":"List supplier quotations","description":"Returns a paginated collection of supplier quotations in the current organization scope.","tags":["Sourcing"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters1Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters2Schema"},"example":"draft"},{"name":"supplierId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters6Schema"},"example":"number"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters7Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated supplier quotations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":null,"supplierId":null,"supplierNameSnapshot":null,"quoteDate":null,"validUntil":null,"currencyCode":"string","status":"string","sourceKind":"string","sourceFileName":null,"sourceSheetName":null,"lineCount":1,"promotedCount":1,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/quotes?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"sourcing_post_sourcing_quotes","summary":"Create supplier quotation","description":"Creates a draft supplier quotation in the caller’s organization.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchema"},"example":{"supplierId":null,"supplierNameSnapshot":null,"currencyCode":"CNY","sourceKind":"manual","sourceFileName":null,"notes":null}}},"description":"Creates a draft supplier quotation in the caller’s organization."},"responses":{"201":{"description":"Supplier Quotation created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/sourcing/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierId\\\": null,\n  \\\"supplierNameSnapshot\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"sourceKind\\\": \\\"manual\\\",\n  \\\"sourceFileName\\\": null,\n  \\\"notes\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"sourcing_put_sourcing_quotes","summary":"Update supplier quotation","description":"Updates a draft quotation header; requires the expected version for optimistic locking.","tags":["Sourcing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchema"},"example":{"supplierId":null,"supplierNameSnapshot":null,"currencyCode":"CNY","sourceKind":"manual","sourceFileName":null,"notes":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a draft quotation header; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Supplier Quotation updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/sourcing/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"supplierId\\\": null,\n  \\\"supplierNameSnapshot\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"sourceKind\\\": \\\"manual\\\",\n  \\\"sourceFileName\\\": null,\n  \\\"notes\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"sourcing_delete_sourcing_quotes","summary":"Delete supplier quotation","description":"Soft-deletes a draft or cancelled quotation. Approved quotations are archived instead.","tags":["Sourcing"],"parameters":[],"responses":{"200":{"description":"Supplier Quotation deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/sourcing/quotes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/template":{"get":{"operationId":"sourcing_get_sourcing_template","summary":"Download the standard quotation template","description":"Returns an XLSX with the canonical bilingual header row and three example lines. A workbook returned with this header row imports without a manual column mapping.","tags":["Sourcing"],"parameters":[],"responses":{"200":{"description":"XLSX template","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses200ContentApplicationJsonSchema"},"example":"string"}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/template\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/sourcing/quotes/{id}":{"get":{"operationId":"sourcing_get_sourcing_quotes_id","summary":"Supplier quotation detail","description":"Returns one quotation in the caller’s organization scope together with its line and promotion counters.","tags":["Sourcing"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetParameters0Schema"}}],"responses":{"200":{"description":"The quotation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","number":null,"status":"string","currencyCode":"string","supplierId":null,"sourceAttachmentId":null,"sourceSheetName":null,"headerRowIndex":null,"lineCount":1,"promotedCount":1,"updatedAt":null}}}}},"400":{"description":"Invalid id or missing organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Not authenticated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing feature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Not found in this organization","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/sourcing/quotes/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/trade_docs/contracts/attach":{"get":{"operationId":"trade_docs_get_trade_docs_contracts_attach","summary":"List contract attachments","description":"Returns a paginated collection of contract attachments in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract attachments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","attachmentId":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/attach?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"trade_docs_put_trade_docs_contracts_attach","summary":"Update contract attachment","description":"Binds an uploaded stamped/signed scan to the contract, or clears it with `attachmentId: null` (archive + download only; the generated XLSX is untouched).","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","attachmentId":null}}},"description":"Binds an uploaded stamped/signed scan to the contract, or clears it with `attachmentId: null` (archive + download only; the generated XLSX is untouched)."},"responses":{"200":{"description":"Contract Attachment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/attach\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"attachmentId\\\": null\n}\""}],"x-require-auth":true}},"/trade_docs/contracts/lines":{"get":{"operationId":"trade_docs_get_trade_docs_contracts_lines","summary":"List contract lines","description":"Returns a paginated collection of contract lines in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters3Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters4Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"productId":null,"name":null,"sku":null,"model":null,"spec":null,"unit":null,"quantity":"string","unitPrice":"string","contractAmount":"string","financeAmount":"string","financeSource":"invoice","note":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/lines?page=1&pageSize=200&sortField=line_number&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/trade_docs/contracts":{"get":{"operationId":"trade_docs_get_trade_docs_contracts","summary":"List contracts","description":"Returns a paginated collection of contracts in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters3Schema"},"example":"string"},{"name":"direction","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters4Schema"},"example":"purchase"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters5Schema"},"example":"draft"},{"name":"counterpartyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"priceTier","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters7Schema"},"example":"purchase"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters9Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters10Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetParameters11Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated contracts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":null,"direction":"purchase","status":"draft","counterpartyKind":"string","counterpartyId":null,"counterpartyName":null,"priceTier":null,"currencyCode":"string","contractTotal":"string","financeTotal":"string","differenceTotal":"string","currencyScale":null,"signedAt":null,"deliveryDate":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"trade_docs_post_trade_docs_contracts","summary":"Create contract","description":"Creates a draft purchase/sales contract with its lines in the caller’s organization.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchema"},"example":{"direction":"purchase","counterpartyKind":"supplier","counterpartyId":null,"priceTier":null,"currencyCode":"CNY","sourceKind":null,"sourceId":null,"paymentTerms":null,"shippingMethod":null,"destination":null,"marks":null,"notes":null,"lines":[]}}},"description":"Creates a draft purchase/sales contract with its lines in the caller’s organization."},"responses":{"201":{"description":"Contract created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"direction\\\": \\\"purchase\\\",\n  \\\"counterpartyKind\\\": \\\"supplier\\\",\n  \\\"counterpartyId\\\": null,\n  \\\"priceTier\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"sourceKind\\\": null,\n  \\\"sourceId\\\": null,\n  \\\"paymentTerms\\\": null,\n  \\\"shippingMethod\\\": null,\n  \\\"destination\\\": null,\n  \\\"marks\\\": null,\n  \\\"notes\\\": null,\n  \\\"lines\\\": []\n}\""}],"x-require-auth":true},"put":{"operationId":"trade_docs_put_trade_docs_contracts","summary":"Update contract","description":"Updates a draft contract (and replaces its lines when provided); requires the expected version.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchema"},"example":{"direction":"purchase","counterpartyKind":"supplier","counterpartyId":null,"priceTier":null,"currencyCode":"CNY","sourceKind":null,"sourceId":null,"paymentTerms":null,"shippingMethod":null,"destination":null,"marks":null,"notes":null,"lines":[],"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a draft contract (and replaces its lines when provided); requires the expected version."},"responses":{"200":{"description":"Contract updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"direction\\\": \\\"purchase\\\",\n  \\\"counterpartyKind\\\": \\\"supplier\\\",\n  \\\"counterpartyId\\\": null,\n  \\\"priceTier\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"sourceKind\\\": null,\n  \\\"sourceId\\\": null,\n  \\\"paymentTerms\\\": null,\n  \\\"shippingMethod\\\": null,\n  \\\"destination\\\": null,\n  \\\"marks\\\": null,\n  \\\"notes\\\": null,\n  \\\"lines\\\": [],\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"trade_docs_delete_trade_docs_contracts","summary":"Delete contract","description":"Soft-deletes a draft or cancelled contract.","tags":["Trade Documents"],"parameters":[],"responses":{"200":{"description":"Contract deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/trade_docs/contracts/transitions":{"get":{"operationId":"trade_docs_get_trade_docs_contracts_transitions","summary":"List contract transitions","description":"Returns a paginated collection of contract transitions in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract transitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/transitions?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"trade_docs_post_trade_docs_contracts_transitions","summary":"Create contract transition","description":"Applies one allowed status transition (issue/sign/close/cancel) to a contract.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","action":"issue"}}},"description":"Applies one allowed status transition (issue/sign/close/cancel) to a contract."},"responses":{"201":{"description":"Contract Transition created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/transitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"action\\\": \\\"issue\\\"\n}\""}],"x-require-auth":true}},"/trade_docs/invoices/attach":{"get":{"operationId":"trade_docs_get_trade_docs_invoices_attach","summary":"List invoice attachments","description":"Returns a paginated collection of invoice attachments in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated invoice attachments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","attachmentId":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices/attach?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"trade_docs_put_trade_docs_invoices_attach","summary":"Update invoice attachment","description":"Binds an uploaded attachment to the invoice (archive + download only).","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","attachmentId":null}}},"description":"Binds an uploaded attachment to the invoice (archive + download only)."},"responses":{"200":{"description":"Invoice Attachment updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices/attach\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"attachmentId\\\": null\n}\""}],"x-require-auth":true}},"/trade_docs/invoices/lines":{"get":{"operationId":"trade_docs_get_trade_docs_invoices_lines","summary":"List invoice lines","description":"Returns a paginated collection of invoice lines in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"invoiceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractLineId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters4Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters5Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated invoice lines","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","lineNumber":1,"productId":null,"description":null,"sku":null,"unit":null,"quantity":"string","unitPrice":"string","amount":"string","contractLineId":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices/lines?page=1&pageSize=200&sortField=line_number&sortDir=asc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/trade_docs/invoices":{"get":{"operationId":"trade_docs_get_trade_docs_invoices","summary":"List invoices","description":"Returns a paginated collection of invoices in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters3Schema"},"example":"string"},{"name":"direction","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters4Schema"},"example":"inbound"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters5Schema"},"example":"draft"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"counterpartyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters9Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters10Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetParameters11Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated invoices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":null,"direction":"inbound","status":"draft","counterpartyKind":"string","counterpartyId":null,"counterpartyName":null,"contractId":null,"contractNumber":null,"currencyCode":"string","subtotal":"string","total":"string","issuedAt":null,"attachmentId":null,"created_at":null,"updated_at":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"trade_docs_post_trade_docs_invoices","summary":"Create invoice","description":"Creates a draft invoice (optionally bound to a contract) with its lines.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchema"},"example":{"number":null,"direction":"inbound","counterpartyKind":"supplier","counterpartyId":null,"contractId":null,"sourceKind":null,"sourceId":null,"currencyCode":"CNY","notes":null,"lines":[]}}},"description":"Creates a draft invoice (optionally bound to a contract) with its lines."},"responses":{"201":{"description":"Invoice created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"number\\\": null,\n  \\\"direction\\\": \\\"inbound\\\",\n  \\\"counterpartyKind\\\": \\\"supplier\\\",\n  \\\"counterpartyId\\\": null,\n  \\\"contractId\\\": null,\n  \\\"sourceKind\\\": null,\n  \\\"sourceId\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"notes\\\": null,\n  \\\"lines\\\": []\n}\""}],"x-require-auth":true},"put":{"operationId":"trade_docs_put_trade_docs_invoices","summary":"Update invoice","description":"Updates a draft invoice and replaces its lines when provided; requires the expected version.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchema"},"example":{"number":null,"direction":"inbound","counterpartyKind":"supplier","counterpartyId":null,"contractId":null,"sourceKind":null,"sourceId":null,"currencyCode":"CNY","notes":null,"lines":[],"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a draft invoice and replaces its lines when provided; requires the expected version."},"responses":{"200":{"description":"Invoice updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"number\\\": null,\n  \\\"direction\\\": \\\"inbound\\\",\n  \\\"counterpartyKind\\\": \\\"supplier\\\",\n  \\\"counterpartyId\\\": null,\n  \\\"contractId\\\": null,\n  \\\"sourceKind\\\": null,\n  \\\"sourceId\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"notes\\\": null,\n  \\\"lines\\\": [],\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"trade_docs_delete_trade_docs_invoices","summary":"Delete invoice","description":"Soft-deletes a draft or void invoice and releases its influence on the contract head.","tags":["Trade Documents"],"parameters":[],"responses":{"200":{"description":"Invoice deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/trade_docs/invoices/transitions":{"get":{"operationId":"trade_docs_get_trade_docs_invoices_transitions","summary":"List invoice transitions","description":"Returns a paginated collection of invoice transitions in the current organization scope.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetParameters1Schema"},"example":"draft"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated invoice transitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","status":"string"}]}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices/transitions?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"trade_docs_post_trade_docs_invoices_transitions","summary":"Create invoice transition","description":"Confirms or voids an invoice and recomputes the bound contract’s totals.","tags":["Trade Documents"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","action":"confirm"}}},"description":"Confirms or voids an invoice and recomputes the bound contract’s totals."},"responses":{"201":{"description":"Invoice Transition created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/trade_docs/invoices/transitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"action\\\": \\\"confirm\\\"\n}\""}],"x-require-auth":true}},"/trade_docs/contracts/{id}/document":{"get":{"operationId":"trade_docs_get_trade_docs_contracts_id_document","summary":"Download contract document","description":"Streams the XLSX document generated for a contract. The contract must be visible to the caller, and the file must have been generated first.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetParameters0Schema"}}],"responses":{"200":{"description":"XLSX document","content":{"application/json":{"schema":{}}}},"400":{"description":"Invalid contract id or no organization selected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Contract not found, or no document generated yet","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/:id/document\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"trade_docs_post_trade_docs_contracts_id_document","summary":"Generate the contract document","description":"Renders the contract to XLSX, stores it as an attachment on the contract and points the contract at it. An issued, signed or closed contract can produce a document.","tags":["Trade Documents"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostParameters0Schema"}}],"responses":{"200":{"description":"Generated document reference","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"attachmentId":"00000000-0000-4000-8000-000000000000","fileName":"string"}}}},"400":{"description":"Invalid contract id or no organization selected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Contract not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"422":{"description":"The contract is a draft or was cancelled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses422ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/trade_docs/contracts/:id/document\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/export_finance/collection-documents":{"get":{"operationId":"export_finance_get_export_finance_collection_documents","summary":"List collection documents","description":"Returns a paginated collection of collection documents in the current organization scope.","tags":["Export Finance"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"collectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"docType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters2Schema"},"example":"foreign_income_certificate"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated collection documents","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","collectionId":"00000000-0000-4000-8000-000000000000","docType":"foreign_income_certificate","issuedAt":null,"attachmentId":null,"note":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/collection-documents?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"export_finance_post_export_finance_collection_documents","summary":"Create collection document","description":"Records one 涉外收入证明 (or other file) on an order-level collection record.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchema"},"example":{"collectionId":"00000000-0000-4000-8000-000000000000","docType":"foreign_income_certificate","issuedAt":null,"attachmentId":null,"note":null}}},"description":"Records one 涉外收入证明 (or other file) on an order-level collection record."},"responses":{"201":{"description":"Collection Document created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/export_finance/collection-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"collectionId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"docType\\\": \\\"foreign_income_certificate\\\",\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"export_finance_put_export_finance_collection_documents","summary":"Update collection document","description":"Updates a collection document.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchema"},"example":{"issuedAt":null,"attachmentId":null,"note":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a collection document."},"responses":{"200":{"description":"Collection Document updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/export_finance/collection-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"export_finance_delete_export_finance_collection_documents","summary":"Delete collection document","description":"Soft-deletes a collection document.","tags":["Export Finance"],"parameters":[],"responses":{"200":{"description":"Collection Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/export_finance/collection-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/export_finance/collections":{"get":{"operationId":"export_finance_get_export_finance_collections","summary":"List collection records","description":"Returns a paginated collection of collection records in the current organization scope.","tags":["Export Finance"],"parameters":[{"name":"purchaseOrderId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated collection records","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchema"},"example":{"item":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/collections?purchaseOrderId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"export_finance_put_export_finance_collections","summary":"Update collection record","description":"Upserts the 收汇档案 of one purchase order; the record is created on first save and updated afterwards.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchema"},"example":{"purchaseOrderId":"00000000-0000-4000-8000-000000000000","purchaseOrderNumber":null,"currencyCode":"CNY","collectionStatus":"received","updatedAt":null}}},"description":"Upserts the 收汇档案 of one purchase order; the record is created on first save and updated afterwards."},"responses":{"200":{"description":"Collection Record updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/export_finance/collections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"purchaseOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"purchaseOrderNumber\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"collectionStatus\\\": \\\"received\\\",\n  \\\"updatedAt\\\": null\n}\""}],"x-require-auth":true}},"/export_finance/container-files":{"get":{"operationId":"export_finance_get_export_finance_container_files","summary":"List the 柜档案 (container file): container facts, orders with allocated refunds, and the refund application","tags":["Export Finance"],"parameters":[{"name":"shipmentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters1Schema"},"example":"draft"},{"name":"taxRefundStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters2Schema"},"example":"completed"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters3Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters5Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters6Schema"},"example":"departed_at"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters7Schema"},"example":"asc"},{"name":"format","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetParameters8Schema"},"example":"json"}],"responses":{"200":{"description":"Container file rows, or a CSV export when `format=csv`","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"shipmentId":"00000000-0000-4000-8000-000000000000","shipmentNumber":null,"shipmentStatus":"draft","currentMilestone":null,"carrierName":null,"departurePort":null,"departedAt":null,"receivedAt":null,"etd":null,"eta":null,"containerType":null,"containerNumber":null,"sealNumber":null,"bookingNumber":null,"orders":[{"purchaseOrderId":"00000000-0000-4000-8000-000000000000","number":null,"businessNumber":null,"ownerName":null,"customerName":null,"total":"string","allocatedRefundAmount":null,"sharePercent":null}],"taxRefundStatus":"completed","taxRefundAmount":null,"taxRefundNote":null,"checklist":{"so":true,"telexRelease":true,"customsDeclaration":true,"domesticFreight":true,"bookingCharges":true,"taxRefundPackage":true,"reportDraft":true},"checklistMissing":["string"]}],"total":1,"totalPages":1}}}},"400":{"description":"Invalid query or unresolvable organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Missing export_finance.cabinets.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses403ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/container-files?page=1&pageSize=50&sortField=departed_at&sortDir=desc\" \\\n  -H \"Accept: application/json\""}]}},"/export_finance/order-files":{"get":{"operationId":"export_finance_get_export_finance_order_files","summary":"List the 订单档案 (order file) in both the business and the finance view","tags":["Export Finance"],"parameters":[{"name":"purchaseOrderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"view","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters1Schema"},"example":"business"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters2Schema"},"example":"cancelled"},{"name":"collectionStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters3Schema"},"example":"received"},{"name":"taxRefundStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters4Schema"},"example":"completed"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters5Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters6Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters7Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters8Schema"},"example":"placed_at"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters9Schema"},"example":"asc"},{"name":"format","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetParameters10Schema"},"example":"json"}],"responses":{"200":{"description":"Order file rows, or a CSV export when `format=csv`","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"purchaseOrderId":"00000000-0000-4000-8000-000000000000","number":null,"businessNumber":null,"supplierName":null,"ownerName":null,"customerName":null,"productCategory":null,"businessStatus":"cancelled","placedAt":null,"expectedDeliveryAt":null,"shipmentEtd":null,"shipmentDepartedAt":null,"receivedAt":null,"containerType":null,"containerNumber":null,"sealNumber":null,"bookingNumber":null,"shipmentCount":1,"finance":{"orderAmount":"string","depositPlanned":null,"balancePlanned":null,"paidAmount":"string","outstandingAmount":"string","kcPriceAmount":null,"kcPriceCurrency":null,"subsidiaryInvoiceAmount":null,"subsidiaryInvoiceCurrency":null,"exchangeRate":null},"collectionStatus":"received","refundStatus":"completed","allocatedRefundAmount":null,"containers":[{"shipmentId":"00000000-0000-4000-8000-000000000000","shipmentNumber":null,"status":"string","currentMilestone":null,"containerNumber":null,"departedAt":null,"receivedAt":null,"taxRefundStatus":"completed","taxRefundAmount":null,"taxRefundNote":null}],"checklist":{"supplierInvoice":true,"packingList":true,"purchasePaymentReceipt":true,"purchaseContract":true,"salesContract":true,"kcInvoiceStamped":true,"foreignIncomeCertificate":true,"so":true,"telexRelease":true,"customsDeclaration":true,"domesticFreight":true,"bookingCharges":true},"checklistMissing":["string"]}],"total":1,"totalPages":1}}}},"400":{"description":"Invalid query or unresolvable organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Missing export_finance.orders.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses403ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/order-files?view=business&page=1&pageSize=50&sortField=placed_at&sortDir=desc\" \\\n  -H \"Accept: application/json\""}]}},"/export_finance/refund-documents":{"get":{"operationId":"export_finance_get_export_finance_refund_documents","summary":"List refund documents","description":"Returns a paginated collection of refund documents in the current organization scope.","tags":["Export Finance"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"refundId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"docType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters2Schema"},"example":"tax_refund_package"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated refund documents","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","refundId":"00000000-0000-4000-8000-000000000000","docType":"tax_refund_package","issuedAt":null,"attachmentId":null,"note":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/refund-documents?page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"export_finance_post_export_finance_refund_documents","summary":"Create refund document","description":"Records one 报告草单 / 出口退税资料整理 file on a container-level refund record.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchema"},"example":{"refundId":"00000000-0000-4000-8000-000000000000","docType":"tax_refund_package","issuedAt":null,"attachmentId":null,"note":null}}},"description":"Records one 报告草单 / 出口退税资料整理 file on a container-level refund record."},"responses":{"201":{"description":"Refund Document created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/export_finance/refund-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"refundId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"docType\\\": \\\"tax_refund_package\\\",\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"export_finance_put_export_finance_refund_documents","summary":"Update refund document","description":"Updates a refund document.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchema"},"example":{"issuedAt":null,"attachmentId":null,"note":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a refund document."},"responses":{"200":{"description":"Refund Document updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/export_finance/refund-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"issuedAt\\\": null,\n  \\\"attachmentId\\\": null,\n  \\\"note\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"export_finance_delete_export_finance_refund_documents","summary":"Delete refund document","description":"Soft-deletes a refund document.","tags":["Export Finance"],"parameters":[],"responses":{"200":{"description":"Refund Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/export_finance/refund-documents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/export_finance/refunds":{"get":{"operationId":"export_finance_get_export_finance_refunds","summary":"List tax refund records","description":"Returns a paginated collection of tax refund records in the current organization scope.","tags":["Export Finance"],"parameters":[{"name":"shipmentId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated tax refund records","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchema"},"example":{"item":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/export_finance/refunds?shipmentId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"export_finance_put_export_finance_refunds","summary":"Update tax refund record","description":"Upserts the 出口退税档案 of one container; a shipment that is missing or cancelled is refused with 409.","tags":["Export Finance"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchema"},"example":{"shipmentId":"00000000-0000-4000-8000-000000000000","shipmentNumber":null,"currencyCode":"CNY","taxRefundStatus":"completed","taxRefundNote":null,"updatedAt":null}}},"description":"Upserts the 出口退税档案 of one container; a shipment that is missing or cancelled is refused with 409."},"responses":{"200":{"description":"Tax Refund Record updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/export_finance/refunds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"shipmentId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"shipmentNumber\\\": null,\n  \\\"currencyCode\\\": \\\"CNY\\\",\n  \\\"taxRefundStatus\\\": \\\"completed\\\",\n  \\\"taxRefundNote\\\": null,\n  \\\"updatedAt\\\": null\n}\""}],"x-require-auth":true}},"/parties/options":{"get":{"operationId":"parties_get_parties_options","summary":"List party options","description":"Scoped option source for pickers: display names only, filtered by code (the plaintext column). Encrypted fields are decrypted for the response but never used as a filter.","tags":["Parties"],"parameters":[],"responses":{"200":{"description":"Available party options.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"value":"string","label":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Missing parties.view","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/parties/options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/parties":{"get":{"operationId":"parties_get_parties","summary":"List parties","description":"Returns a paginated collection of parties in the current organization scope.","tags":["Parties"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters3Schema"},"example":"active"},{"name":"countryCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters4Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters6Schema"},"example":1},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters7Schema"},"example":"id"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetParameters8Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated parties","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","countryCode":null,"status":"string","contactName":null,"contactPhone":null,"email":null,"addressLine1":null,"addressLine2":null,"city":null,"tenant_id":null,"organization_id":null,"created_at":null,"updated_at":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/parties?page=1&pageSize=50&sortField=created_at&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"parties_post_parties","summary":"Create party","description":"Creates a party (with its roles and bank block) in the caller’s organization.","tags":["Parties"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","countryCode":null,"contactName":null,"contactPhone":null,"email":null,"addressLine1":null,"addressLine2":null,"city":null}}},"description":"Creates a party (with its roles and bank block) in the caller’s organization."},"responses":{"201":{"description":"Party created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/parties\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"countryCode\\\": null,\n  \\\"contactName\\\": null,\n  \\\"contactPhone\\\": null,\n  \\\"email\\\": null,\n  \\\"addressLine1\\\": null,\n  \\\"addressLine2\\\": null,\n  \\\"city\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"parties_put_parties","summary":"Update party","description":"Updates a party; requires the expected version for optimistic locking.","tags":["Parties"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","countryCode":null,"contactName":null,"contactPhone":null,"email":null,"addressLine1":null,"addressLine2":null,"city":null}}},"description":"Updates a party; requires the expected version for optimistic locking."},"responses":{"200":{"description":"Party updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/parties\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"countryCode\\\": null,\n  \\\"contactName\\\": null,\n  \\\"contactPhone\\\": null,\n  \\\"email\\\": null,\n  \\\"addressLine1\\\": null,\n  \\\"addressLine2\\\": null,\n  \\\"city\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"parties_delete_parties","summary":"Delete party","description":"Soft-deletes a party.","tags":["Parties"],"parameters":[],"responses":{"200":{"description":"Party deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/parties\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/parties/{id}":{"get":{"operationId":"parties_get_parties_id","summary":"Get one party with its roles and bank accounts","description":"Scoped read; encrypted fields are decrypted for the response.","tags":["Parties"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetParameters0Schema"}}],"responses":{"200":{"description":"The party aggregate.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","countryCode":null,"status":"string","contactName":null,"contactPhone":null,"email":null,"addressLine1":null,"addressLine2":null,"city":null,"roles":["string"],"bankAccounts":[{"id":"00000000-0000-4000-8000-000000000000","beneficiaryBank":"string","accountNumber":"string","swiftCode":null,"bankAddress":null,"isDefault":true}],"updatedAt":null}}}}},"400":{"description":"Malformed id or missing organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Party not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/parties/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/storage-providers/s3/download":{"get":{"operationId":"storage_s3_get_storage_providers_s3_download","summary":"Download file from S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3DownloadGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/download\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/list":{"get":{"operationId":"storage_s3_get_storage_providers_s3_list","summary":"List S3 objects","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3ListGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/list\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/signed-url":{"post":{"operationId":"storage_s3_post_storage_providers_s3_signed_url","summary":"Generate S3 pre-signed URL","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3SignedUrlPostResponses201ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/signed-url\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/upload":{"post":{"operationId":"storage_s3_post_storage_providers_s3_upload","summary":"Upload file to S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3UploadPostResponses201ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/upload\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/signed-upload/:token":{"put":{"operationId":"storage_s3_put_storage_providers_s3_signed_upload_token","summary":"Upload through a bounded one-time compatibility URL","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3SignedUploadTokenPutResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/signed-upload/:token\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/delete":{"delete":{"operationId":"storage_s3_delete_storage_providers_s3_delete","summary":"Delete file from S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"204":{"description":"Success"}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://dgital-base.kc-trade.cn/api/storage-providers/s3/delete\" \\\n  -H \"Accept: application/json\""}]}}},"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Send an `Authorization: Bearer <token>` header with a valid API token."}},"schemas":{"DocPathsAuthLocaleGetParameters0Schema":{"type":"string"},"DocPathsAuthLocaleGetParameters1Schema":{"type":"string"},"DocPathsAuthLocaleGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthLocaleGetResponses302ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthLocalePostRequestBodyContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthLocalePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthLocalePostRequestBodyContentApplicationJsonSchemaPropertiesLocale"}},"required":["locale"],"additionalProperties":false},"DocPathsAuthLocalePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsAuthLocalePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthLocalePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthLocalePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLocalePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthLocalePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesNameAnyOf0":{"type":"null"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesNameAnyOf1":{"type":"string"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesNameAnyOf1"}]},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesEmail"},"name":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesName"},"roles":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRoles"}},"required":["email","roles"],"additionalProperties":false},"DocPathsAuthProfileGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthProfileGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthProfileGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthProfileGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesCurrentPassword":{"type":"string","minLength":1},"DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesPassword":{"type":"string","minLength":6},"DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"currentPassword":{"$ref":"#/components/schemas/DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesCurrentPassword"},"password":{"$ref":"#/components/schemas/DocPathsAuthProfilePutRequestBodyContentApplicationJsonSchemaPropertiesPassword"}},"additionalProperties":false},"DocPathsAuthProfilePutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthProfilePutResponses200ContentApplicationJsonSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthProfilePutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses200ContentApplicationJsonSchemaPropertiesOk"},"email":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses200ContentApplicationJsonSchemaPropertiesEmail"}},"required":["ok","email"],"additionalProperties":false},"DocPathsAuthProfilePutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthProfilePutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthProfilePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthProfilePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthProfilePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthRolesAclGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesFeaturesItems":{"type":"string"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesFeaturesItems"}},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0":{"type":"null"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items":{"type":"string"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items"}},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizations":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1"}]},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"},"features":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesFeatures"},"organizations":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizations"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["isSuperAdmin","features","organizations","updatedAt"],"additionalProperties":false},"DocPathsAuthRolesAclGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems":{"type":"string"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems"}},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0":{"type":"null"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items":{"type":"string"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items"}},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizations":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1"}]},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"roleId":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesRoleId"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesIsSuperAdmin"},"features":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeatures"},"organizations":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizations"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"}},"required":["roleId"],"additionalProperties":false},"DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchemaPropertiesSanitized":{"type":"boolean"},"DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"sanitized":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses200ContentApplicationJsonSchemaPropertiesSanitized"}},"required":["ok","sanitized"],"additionalProperties":false},"DocPathsAuthRolesAclPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesAclPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesAclPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthRolesGetParameters1Schema":{"type":"number"},"DocPathsAuthRolesGetParameters2Schema":{"type":"number"},"DocPathsAuthRolesGetParameters3Schema":{"type":"string"},"DocPathsAuthRolesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUsersCount":{"type":"number"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdsItems":{"type":"string","format":"uuid"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdsItems"}},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0":{"type":"null"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1":{"type":"string"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1"}]},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"usersCount":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUsersCount"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"tenantIds":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIds"},"tenantName":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","usersCount","tenantId","tenantName"],"additionalProperties":false},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthRolesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"totalPages":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsAuthRolesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":2,"maxLength":100},"DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthRolesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"}},"required":["name"],"additionalProperties":false},"DocPathsAuthRolesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthRolesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsAuthRolesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":2,"maxLength":100},"DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthRolesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"}},"required":["id"],"additionalProperties":false},"DocPathsAuthRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthRolesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthRolesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthRolesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthRolesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles":{"type":"boolean"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPreference":{"type":"boolean"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName"},"hasPreference":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPreference"}},"required":["id","name","hasPreference"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType":{"type":"string","enum":["user"]},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType":{"type":"string","enum":["role"]},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType"},"roleId":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId"}},"required":["type","roleId"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScope":{"oneOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1"}]},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string","format":"datetime"},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesLocale"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesSettings"},"canApplyToRoles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles"},"roles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesRoles"},"scope":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesScope"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["locale","settings","canApplyToRoles","roles","scope","updatedAt"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupOrderItems":{"type":"string","minLength":1},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupOrderItems"},"maxItems":200},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesHiddenItemsItems":{"type":"string","minLength":1},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesHiddenItemsItems"},"maxItems":500},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrderAdditionalPropertiesItems":{"type":"string","minLength":1},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrderAdditionalPropertiesItems"},"maxItems":500},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesApplyToRolesItems":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesApplyToRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesApplyToRolesItems"}},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIdsItems":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIdsItems"}},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType":{"type":"string","enum":["user"]},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType":{"type":"string","enum":["role"]},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType"},"roleId":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId"}},"required":["type","roleId"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScope":{"oneOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScopeOneOf1"}]},"DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesItemOrder"},"applyToRoles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesApplyToRoles"},"clearRoleIds":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIds"},"scope":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutRequestBodyContentApplicationJsonSchemaPropertiesScope"}},"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles":{"type":"boolean"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPreference":{"type":"boolean"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName"},"hasPreference":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPreference"}},"required":["id","name","hasPreference"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType":{"type":"string","enum":["user"]},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType":{"type":"string","enum":["role"]},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType"},"roleId":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId"}},"required":["type","roleId"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScope":{"oneOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1"}]},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string","format":"datetime"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesAppliedRolesItems":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesAppliedRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesAppliedRolesItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesClearedRolesItems":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesClearedRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesClearedRolesItems"}},"DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesLocale"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesSettings"},"canApplyToRoles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles"},"roles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesRoles"},"scope":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesScope"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"},"appliedRoles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesAppliedRoles"},"clearedRoles":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses200ContentApplicationJsonSchemaPropertiesClearedRoles"}},"required":["locale","settings","canApplyToRoles","roles","scope","updatedAt","appliedRoles","clearedRoles"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType":{"type":"string","enum":["user"]},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0PropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType":{"type":"string","enum":["role"]},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesType"},"roleId":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1PropertiesRoleId"}},"required":["type","roleId"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScope":{"oneOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScopeOneOf1"}]},"DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"scope":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses200ContentApplicationJsonSchemaPropertiesScope"}},"required":["ok","scope"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarPreferencesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarPreferencesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsActive"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesSettings"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesUpdatedAt"}},"required":["id","name","isActive","settings","createdAt","updatedAt"],"additionalProperties":false},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariants":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariantsItems"}},"DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesLocale"},"variants":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses200ContentApplicationJsonSchemaPropertiesVariants"}},"required":["locale","variants"],"additionalProperties":false},"DocPathsAuthSidebarVariantsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems"},"maxItems":200},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems"},"maxItems":500},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"},"maxItems":500},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder"}},"additionalProperties":false},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSettings"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariant":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt"}},"required":["id","name","isActive","settings","createdAt","updatedAt"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesLocale"},"variant":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses200ContentApplicationJsonSchemaPropertiesVariant"}},"required":["locale","variant"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersAclGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesHasCustomAcl":{"type":"boolean"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesFeaturesItems":{"type":"string"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesFeaturesItems"}},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0":{"type":"null"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items":{"type":"string"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items"}},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizations":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1"}]},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"hasCustomAcl":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesHasCustomAcl"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"},"features":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesFeatures"},"organizations":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesOrganizations"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["hasCustomAcl","isSuperAdmin","features","organizations","updatedAt"],"additionalProperties":false},"DocPathsAuthUsersAclGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems":{"type":"string"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems"}},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0":{"type":"null"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items":{"type":"string"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1Items"}},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizations":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationsAnyOf1"}]},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesIsSuperAdmin"},"features":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeatures"},"organizations":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizations"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"}},"required":["userId"],"additionalProperties":false},"DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchemaPropertiesSanitized":{"type":"boolean"},"DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"sanitized":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses200ContentApplicationJsonSchemaPropertiesSanitized"}},"required":["ok","sanitized"],"additionalProperties":false},"DocPathsAuthUsersAclPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersAclPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersAclPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersConsentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersConsentsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthUsersConsentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersConsentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersConsentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersConsentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersConsentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthUsersResendInvitePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthUsersResendInvitePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrorsAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrorsAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrorsAdditionalPropertiesItems"}},"DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrors":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrorsAdditionalProperties"}},"DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesError"},"fieldErrors":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses422ContentApplicationJsonSchemaPropertiesFieldErrors"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersResendInvitePostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersResendInvitePostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersResendInvitePostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters1Schema":{"type":"string"},"DocPathsAuthUsersGetParameters2Schema":{"type":"number"},"DocPathsAuthUsersGetParameters3Schema":{"type":"number"},"DocPathsAuthUsersGetParameters4Schema":{"type":"string"},"DocPathsAuthUsersGetParameters5Schema":{"type":"string"},"DocPathsAuthUsersGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters7Schema":{"type":"boolean"},"DocPathsAuthUsersGetParameters8SchemaItems":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters8Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters8SchemaItems"}},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1":{"type":"string"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1":{"type":"string"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems":{"type":"string"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems"}},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleIdsItems":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleIdsItems"}},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasPassword":{"type":"boolean"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfirmed":{"type":"boolean"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"email":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail"},"name":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"organizationId":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"tenantName":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"roles":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles"},"roleIds":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleIds"},"hasPassword":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasPassword"},"isConfirmed":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfirmed"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","email","name","organizationId","organizationName","tenantId","tenantName","roles","isConfirmed"],"additionalProperties":false},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsAuthUsersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"totalPages":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsAuthUsersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0":{"type":"null"},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1"}]},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesPassword":{"type":"string","minLength":6},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesSendInviteEmail":{"type":"boolean"},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"name":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"password":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesPassword"},"sendInviteEmail":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesSendInviteEmail"},"organizationId":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"roles":{"$ref":"#/components/schemas/DocPathsAuthUsersPostRequestBodyContentApplicationJsonSchemaPropertiesRoles"}},"required":["email","organizationId"],"additionalProperties":false},"DocPathsAuthUsersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthUsersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsAuthUsersPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0":{"type":"null"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1"}]},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesPassword":{"type":"string","minLength":6},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesIsConfirmed":{"type":"boolean"},"DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"email":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"name":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"password":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesPassword"},"organizationId":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"roles":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesRoles"},"isConfirmed":{"$ref":"#/components/schemas/DocPathsAuthUsersPutRequestBodyContentApplicationJsonSchemaPropertiesIsConfirmed"}},"required":["id"],"additionalProperties":false},"DocPathsAuthUsersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthUsersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthUsersPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthUsersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthUsersDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthUsersDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthUsersDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthUsersDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdGetParameters0Schema":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariant":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt"}},"required":["id","name","isActive","settings","createdAt","updatedAt"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesLocale"},"variant":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses200ContentApplicationJsonSchemaPropertiesVariant"}},"required":["locale","variant"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutParameters0Schema":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrderItems"},"maxItems":200},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string","minLength":1,"maxLength":120},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItemsItems"},"maxItems":500},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string","minLength":1},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"},"maxItems":500},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesItemOrder"}},"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesSettings"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesLocale":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId":{"type":"string","format":"uuid"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive":{"type":"boolean"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion":{"type":"number"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrderItems"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabelsAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItemsItems"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalPropertiesItems"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrderAdditionalProperties"}},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesVersion"},"groupOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupOrder"},"groupLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesGroupLabels"},"itemLabels":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemLabels"},"hiddenItems":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesHiddenItems"},"itemOrder":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettingsPropertiesItemOrder"}},"required":["version","groupOrder","groupLabels","itemLabels","hiddenItems","itemOrder"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAtAnyOf1"}]},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariant":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesIsActive"},"settings":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesSettings"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariantPropertiesUpdatedAt"}},"required":["id","name","isActive","settings","createdAt","updatedAt"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"locale":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesLocale"},"variant":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses200ContentApplicationJsonSchemaPropertiesVariant"}},"required":["locale","variant"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdDeleteParameters0Schema":{"type":"string"},"DocPathsAuthSidebarVariantsIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthSidebarVariantsIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSidebarVariantsIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSidebarVariantsIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSidebarVariantsIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf0":{"type":"null"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf0":{"type":"null"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1PropertiesSrc":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1PropertiesAlt":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1":{"type":"object","properties":{"src":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1PropertiesSrc"},"alt":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1PropertiesAlt"}},"required":["src"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogoAnyOf1"}]},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesName"},"logo":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1PropertiesLogo"}},"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrand":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrandAnyOf1"}]},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesId":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesDefaultName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesHref":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesDefaultTitle":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesEnabled":{"type":"boolean"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesHidden":{"type":"boolean"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesPageContext":{"type":"string","enum":["main","admin","settings","profile"]},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesIconName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesIconMarkup":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesOrder":{"type":"number"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesChildren":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesHref"},"title":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesTitle"},"defaultTitle":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesDefaultTitle"},"enabled":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesEnabled"},"hidden":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesHidden"},"pageContext":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesPageContext"},"iconName":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesIconName"},"iconMarkup":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesIconMarkup"},"order":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesOrder"},"children":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItemsPropertiesChildren"}},"required":["href","title"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItemsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesName"},"defaultName":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesDefaultName"},"items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItemsPropertiesItems"}},"required":["name","items"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroups":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroupsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesId":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesLabel":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesOrder":{"type":"number"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesLabelKey":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesHref":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesOrder":{"type":"number"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesIconName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesIconMarkup":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesChildren":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesLabelKey"},"href":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesHref"},"order":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesOrder"},"iconName":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesIconName"},"iconMarkup":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesIconMarkup"},"children":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItemsPropertiesChildren"}},"required":["id","label","href"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItemsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesLabelKey"},"order":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesOrder"},"items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItemsPropertiesItems"}},"required":["id","label","items"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSections":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPathPrefixesItems":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPathPrefixes":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPathPrefixesItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfileSections":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSectionsItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfilePathPrefixesItems":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfilePathPrefixes":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfilePathPrefixesItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGrantedFeaturesItems":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGrantedFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGrantedFeaturesItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf0":{"type":"null"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1PropertiesId":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1PropertiesName":{"type":"string"},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1PropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1PropertiesName"}},"required":["id","name"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganization":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganizationAnyOf1"}]},"DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"brand":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesBrand"},"groups":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGroups"},"settingsSections":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsSections"},"settingsPathPrefixes":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPathPrefixes"},"profileSections":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfileSections"},"profilePathPrefixes":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesProfilePathPrefixes"},"grantedFeatures":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesGrantedFeatures"},"roles":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesRoles"},"currentOrganization":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses200ContentApplicationJsonSchemaPropertiesCurrentOrganization"}},"required":["groups","settingsSections","settingsPathPrefixes","profileSections","profilePathPrefixes","grantedFeatures","roles"],"additionalProperties":false},"DocPathsAuthAdminNavGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthAdminNavGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthAutologinGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthAutologinGetResponses307ContentTextHtmlSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems":{"type":"string","maxLength":128},"DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchemaPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchemaPropertiesFeaturesItems"},"maxItems":50},"DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"features":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostRequestBodyContentApplicationJsonSchemaPropertiesFeatures"}},"required":["features"],"additionalProperties":false},"DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesGrantedItems":{"type":"string"},"DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesGranted":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesGrantedItems"}},"DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesUserId":{"type":"string"},"DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"granted":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesGranted"},"userId":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses200ContentApplicationJsonSchemaPropertiesUserId"}},"required":["ok","granted","userId"],"additionalProperties":false},"DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDependsOnItems":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDependsOn":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDependsOnItems"}},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"module":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule"},"dependsOn":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDependsOn"}},"required":["id","title","module"],"additionalProperties":false},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesId":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTitle":{"type":"string"},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTitle"}},"required":["id","title"],"additionalProperties":false},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModules":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModulesItems"}},"DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"modules":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses200ContentApplicationJsonSchemaPropertiesModules"}},"required":["items","modules"],"additionalProperties":false},"DocPathsAuthFeaturesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthFeaturesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthFeaturesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthFeaturesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesPassword":{"type":"string","minLength":6},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesRequireRole":{"type":"string"},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesRemember":{"type":"string","enum":["1","on","true"]},"DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesEmail"},"password":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesPassword"},"requireRole":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesRequireRole"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesTenantId"},"remember":{"$ref":"#/components/schemas/DocPathsAuthLoginPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesRemember"}},"required":["email","password"],"additionalProperties":false},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesToken":{"type":"string"},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirectAnyOf0":{"type":"null"},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirectAnyOf1":{"type":"string"},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirect":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirectAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirectAnyOf1"}]},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRefreshToken":{"type":"string"},"DocPathsAuthLoginPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"token":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesToken"},"redirect":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirect"},"refreshToken":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses200ContentApplicationJsonSchemaPropertiesRefreshToken"}},"required":["ok","token","redirect"],"additionalProperties":false},"DocPathsAuthLoginPostResponses400ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthLoginPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLoginPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses400ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthLoginPostResponses401ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthLoginPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLoginPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses401ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthLoginPostResponses403ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthLoginPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLoginPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses403ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthLoginPostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLoginPostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthLoginPostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthLogoutPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthLogoutPostResponses302ContentTextHtmlSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthLogoutPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLogoutPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthLogoutPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesToken":{"type":"string","minLength":10},"DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesPassword":{"type":"string","minLength":6},"DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchema":{"type":"object","properties":{"token":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesToken"},"password":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesPassword"}},"required":["token","password"],"additionalProperties":false},"DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchemaPropertiesRedirect":{"type":"string"},"DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"redirect":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses200ContentApplicationJsonSchemaPropertiesRedirect"}},"required":["ok","redirect"],"additionalProperties":false},"DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthResetConfirmPostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetConfirmPostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthResetConfirmPostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthResetValidatePostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesToken":{"type":"string","minLength":10},"DocPathsAuthResetValidatePostRequestBodyContentApplicationXWwwFormUrlencodedSchema":{"type":"object","properties":{"token":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesToken"}},"required":["token"],"additionalProperties":false},"DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchemaPropertiesValid":{"type":"boolean"},"DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"valid":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostResponses200ContentApplicationJsonSchemaPropertiesValid"}},"required":["ok","valid"],"additionalProperties":false},"DocPathsAuthResetValidatePostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetValidatePostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthResetValidatePostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthResetPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesEmail":{"type":"string","format":"email"},"DocPathsAuthResetPostRequestBodyContentApplicationXWwwFormUrlencodedSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthResetPostRequestBodyContentApplicationXWwwFormUrlencodedSchemaPropertiesEmail"}},"required":["email"],"additionalProperties":false},"DocPathsAuthResetPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthResetPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAuthResetPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthResetPostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetPostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthResetPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthResetPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthResetPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthSessionRefreshGetParameters0Schema":{"type":"string"},"DocPathsAuthSessionRefreshGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthSessionRefreshGetResponses302ContentTextHtmlSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuthSessionRefreshPostRequestBodyContentApplicationJsonSchemaPropertiesRefreshToken":{"type":"string","minLength":1},"DocPathsAuthSessionRefreshPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"refreshToken":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostRequestBodyContentApplicationJsonSchemaPropertiesRefreshToken"}},"required":["refreshToken"],"additionalProperties":false},"DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesAccessToken":{"type":"string"},"DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesExpiresIn":{"type":"number"},"DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"accessToken":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesAccessToken"},"expiresIn":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses200ContentApplicationJsonSchemaPropertiesExpiresIn"}},"required":["ok","accessToken","expiresIn"],"additionalProperties":false},"DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[false]},"DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchemaPropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["ok","error"],"additionalProperties":false},"DocPathsAuthSessionRefreshPostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthSessionRefreshPostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthSessionRefreshPostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationName":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1"}]},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio":{"type":"boolean"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationName"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrl"},"logoPreserveAspectRatio":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["organizationId","organizationName","tenantId","logoUrl","logoPreserveAspectRatio","updatedAt"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0":{"type":"string","format":"uri","maxLength":2048},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1":{"type":"string","pattern":"^\\/api\\/attachments\\/(?:image|file)\\/[A-Za-z0-9%_.~/?=&-]+$","maxLength":2048},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1"}]},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1"}]},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio":{"type":"boolean"},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl"},"logoPreserveAspectRatio":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio"}},"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationName":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1"}]},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio":{"type":"boolean"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationName"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrl"},"logoPreserveAspectRatio":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["organizationId","organizationName","tenantId","logoUrl","logoPreserveAspectRatio","updatedAt"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationBrandingPutResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationBrandingPutResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth":{"type":"number"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelectable":{"type":"boolean"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildren":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"depth":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth"},"selectable":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelectable"},"children":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildren"}},"required":["id","name","depth","selectable","children"],"additionalProperties":false},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesSelectedIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesSelectedId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesSelectedIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}]},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesCanManage":{"type":"boolean"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesCanViewAllOrganizations":{"type":"boolean"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesName":{"type":"string"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItemsPropertiesIsActive"}},"required":["id","name","isActive"],"additionalProperties":false},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenants":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantsItems"}},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"selectedId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesSelectedId"},"canManage":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesCanManage"},"canViewAllOrganizations":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesCanViewAllOrganizations"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"tenants":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesTenants"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"}},"required":["items","selectedId","canManage","canViewAllOrganizations","tenantId","tenants","isSuperAdmin"],"additionalProperties":false},"DocPathsDirectoryOrganizationSwitcherGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationSwitcherGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsGetParameters0Schema":{"type":"number"},"DocPathsDirectoryOrganizationsGetParameters1Schema":{"type":"number"},"DocPathsDirectoryOrganizationsGetParameters2Schema":{"type":"string"},"DocPathsDirectoryOrganizationsGetParameters3Schema":{"type":"string","enum":["options","manage","tree"]},"DocPathsDirectoryOrganizationsGetParameters4Schema":{"type":"string"},"DocPathsDirectoryOrganizationsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsGetParameters6Schema":{"type":"string","enum":["true","false"]},"DocPathsDirectoryOrganizationsGetParameters7Schema":{"type":"string","enum":["all","active","inactive"]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf1"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf1":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf1"}]},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPathLabel":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"}},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildrenCount":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantsCount":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildren":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"parentId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId"},"parentName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentName"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"tenantName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"rootId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootId"},"depth":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth"},"treePath":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath"},"pathLabel":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPathLabel"},"ancestorIds":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIds"},"childIds":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIds"},"descendantIds":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIds"},"childrenCount":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildrenCount"},"descendantsCount":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantsCount"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"children":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildren"}},"required":["id","name","parentId","tenantId"],"additionalProperties":true},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesError"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"}},"required":["items"],"additionalProperties":false},"DocPathsDirectoryOrganizationsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1"}]},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0":{"type":"string","format":"uri","maxLength":2048},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1":{"type":"string","pattern":"^\\/api\\/attachments\\/(?:image|file)\\/[A-Za-z0-9%_.~/?=&-]+$","maxLength":2048},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1"}]},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1"}]},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio":{"type":"boolean"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesChildIdsItems":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesChildIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesChildIdsItems"}},"DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"slug":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl"},"logoPreserveAspectRatio":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"parentId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"childIds":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostRequestBodyContentApplicationJsonSchemaPropertiesChildIds"}},"required":["name"],"additionalProperties":false},"DocPathsDirectoryOrganizationsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryOrganizationsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1"}]},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0":{"type":"string","format":"uri","maxLength":2048},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1":{"type":"string","pattern":"^\\/api\\/attachments\\/(?:image|file)\\/[A-Za-z0-9%_.~/?=&-]+$","maxLength":2048},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1OneOf1"}]},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrlAnyOf1"}]},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio":{"type":"boolean"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesChildIdsItems":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesChildIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesChildIdsItems"}},"DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"slug":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl"},"logoPreserveAspectRatio":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesLogoPreserveAspectRatio"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"parentId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"childIds":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutRequestBodyContentApplicationJsonSchemaPropertiesChildIds"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryOrganizationsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDirectoryOrganizationsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDirectoryOrganizationsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryOrganizationsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryOrganizationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDirectoryOrganizationsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDirectoryOrganizationsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDirectoryTenantsGetParameters1Schema":{"type":"number"},"DocPathsDirectoryTenantsGetParameters2Schema":{"type":"number"},"DocPathsDirectoryTenantsGetParameters3Schema":{"type":"string"},"DocPathsDirectoryTenantsGetParameters4Schema":{"type":"string","enum":["name","createdAt","updatedAt"]},"DocPathsDirectoryTenantsGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsDirectoryTenantsGetParameters6Schema":{"type":"string","enum":["true","false"]},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","isActive","createdAt","updatedAt"],"additionalProperties":true},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsDirectoryTenantsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["name"],"additionalProperties":false},"DocPathsDirectoryTenantsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryTenantsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryTenantsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryTenantsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDirectoryTenantsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDirectoryTenantsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDirectoryTenantsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDirectoryTenantsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDirectoryTenantsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDirectoryTenantsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDirectoryOrganizationsLookupGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDirectoryTenantsLookupGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesTotalKeys":{"type":"number"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesSegment":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResourceAnyOf0":{"type":"null"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResourceAnyOf1":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResourceAnyOf1"}]},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethodAnyOf0":{"type":"null"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethodAnyOf1":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethod":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethodAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethodAnyOf1"}]},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPathAnyOf0":{"type":"null"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPathAnyOf1":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPathAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPathAnyOf1"}]},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeyCount":{"type":"number"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeysItems":{"type":"string"},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeys":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeysItems"}},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItems":{"type":"object","properties":{"segment":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesSegment"},"resource":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesResource"},"method":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesMethod"},"path":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesPath"},"keyCount":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeyCount"},"keys":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItemsPropertiesKeys"}},"required":["segment","resource","method","path","keyCount","keys"],"additionalProperties":false},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegmentsItems"}},"DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"generatedAt":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt"},"totalKeys":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesTotalKeys"},"segments":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses200ContentApplicationJsonSchemaPropertiesSegments"}},"required":["generatedAt","totalKeys","segments"],"additionalProperties":false},"DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCacheGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCacheGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses503ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["purgeAll","purgeSegment"]},"DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchemaPropertiesSegment":{"type":"string"},"DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"action":{"$ref":"#/components/schemas/DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchemaPropertiesAction"},"segment":{"$ref":"#/components/schemas/DocPathsConfigsCachePostRequestBodyContentApplicationJsonSchemaPropertiesSegment"}},"required":["action"],"additionalProperties":false},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["purgeSegment"]},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesSegment":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesDeleted":{"type":"number"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesGeneratedAt":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesTotalKeys":{"type":"number"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesSegment":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResourceAnyOf0":{"type":"null"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResourceAnyOf1":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResourceAnyOf1"}]},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethodAnyOf0":{"type":"null"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethodAnyOf1":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethod":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethodAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethodAnyOf1"}]},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPathAnyOf0":{"type":"null"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPathAnyOf1":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPathAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPathAnyOf1"}]},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeyCount":{"type":"number"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeysItems":{"type":"string"},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeys":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeysItems"}},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItems":{"type":"object","properties":{"segment":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesSegment"},"resource":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesResource"},"method":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesMethod"},"path":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesPath"},"keyCount":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeyCount"},"keys":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItemsPropertiesKeys"}},"required":["segment","resource","method","path","keyCount","keys"],"additionalProperties":false},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegmentsItems"}},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStats":{"type":"object","properties":{"generatedAt":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesGeneratedAt"},"totalKeys":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesTotalKeys"},"segments":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStatsPropertiesSegments"}},"required":["generatedAt","totalKeys","segments"],"additionalProperties":false},"DocPathsConfigsCachePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"action":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesAction"},"segment":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesSegment"},"deleted":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesDeleted"},"stats":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses200ContentApplicationJsonSchemaPropertiesStats"}},"required":["action","segment","deleted","stats"],"additionalProperties":false},"DocPathsConfigsCachePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCachePostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCachePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCachePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCachePostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCachePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCachePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCachePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsCachePostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCachePostResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCachePostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsCachePostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsCachePostResponses503ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsCachePostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses503ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses503ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesStartedAt":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketIntervalMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesModules":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesOperations":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesTotalCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotals":{"type":"object","properties":{"modules":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesModules"},"operations":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesOperations"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesTotalDurationMs"},"totalCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesTotalCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotalsPropertiesPositiveRssDeltaBytes"}},"required":["modules","operations","calls","errors","totalDurationMs","totalCpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesP95DurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholds":{"type":"object","properties":{"p95DurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesP95DurationMs"},"cpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesPositiveRssDeltaBytes"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholdsPropertiesErrors"}},"required":["p95DurationMs","cpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes","errors"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesModuleId":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesP95DurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTotalCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesSurface":{"type":"string","enum":["api","subscriber","worker","custom"]},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesP95DurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesTotalCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItems":{"type":"object","properties":{"surface":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesSurface"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesTotalDurationMs"},"p95DurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesP95DurationMs"},"totalCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesTotalCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesPositiveRssDeltaBytes"}},"required":["surface","calls","errors","totalDurationMs","p95DurationMs","totalCpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfaces":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesModuleId":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesOperation":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceIdAnyOf0":{"type":"null"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceIdAnyOf1":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceIdAnyOf1"}]},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesP95DurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalCpuUserMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalCpuSystemMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesFirstSeenAt":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesLastSeenAt":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItems":{"type":"object","properties":{"moduleId":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesModuleId"},"surface":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItemsPropertiesSurface"},"operation":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesOperation"},"resourceId":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesResourceId"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalDurationMs"},"maxDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxDurationMs"},"p95DurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesP95DurationMs"},"totalCpuUserMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalCpuUserMs"},"totalCpuSystemMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalCpuSystemMs"},"maxCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxCpuMs"},"totalHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalHeapDeltaBytes"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesPositiveHeapDeltaBytes"},"maxHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxHeapDeltaBytes"},"totalRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesTotalRssDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesPositiveRssDeltaBytes"},"maxRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesMaxRssDeltaBytes"},"firstSeenAt":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesFirstSeenAt"},"lastSeenAt":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItemsPropertiesLastSeenAt"}},"required":["moduleId","surface","operation","resourceId","calls","errors","totalDurationMs","maxDurationMs","p95DurationMs","totalCpuUserMs","totalCpuSystemMs","maxCpuMs","totalHeapDeltaBytes","positiveHeapDeltaBytes","maxHeapDeltaBytes","totalRssDeltaBytes","positiveRssDeltaBytes","maxRssDeltaBytes","firstSeenAt","lastSeenAt"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCandidateReasonsItems":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCandidateReasons":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCandidateReasonsItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItems":{"type":"object","properties":{"moduleId":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesModuleId"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTotalDurationMs"},"p95DurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesP95DurationMs"},"totalCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTotalCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesPositiveRssDeltaBytes"},"surfaces":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfaces"},"topOperations":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperations"},"candidateReasons":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesCandidateReasons"}},"required":["moduleId","calls","errors","totalDurationMs","p95DurationMs","totalCpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes","surfaces","topOperations","candidateReasons"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModules":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesCandidates":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketStart":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketEnd":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketIntervalMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesStage":{"type":"string","enum":["startup","running"]},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesPartial":{"type":"boolean"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesModules":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesTotalCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotals":{"type":"object","properties":{"modules":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesModules"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesTotalDurationMs"},"totalCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesTotalCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotalsPropertiesPositiveRssDeltaBytes"}},"required":["modules","calls","errors","totalDurationMs","totalCpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesModuleId":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCalls":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesErrors":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTotalDurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesP95DurationMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTotalCpuMs":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesPositiveHeapDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesPositiveRssDeltaBytes":{"type":"number"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesSurfaces":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesSurfacesItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTopOperations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModulesItemsPropertiesTopOperationsItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCandidateReasonsItems":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCandidateReasons":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCandidateReasonsItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItems":{"type":"object","properties":{"moduleId":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesModuleId"},"calls":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCalls"},"errors":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesErrors"},"totalDurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTotalDurationMs"},"p95DurationMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesP95DurationMs"},"totalCpuMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTotalCpuMs"},"positiveHeapDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesPositiveHeapDeltaBytes"},"positiveRssDeltaBytes":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesPositiveRssDeltaBytes"},"surfaces":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesSurfaces"},"topOperations":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesTopOperations"},"candidateReasons":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItemsPropertiesCandidateReasons"}},"required":["moduleId","calls","errors","totalDurationMs","p95DurationMs","totalCpuMs","positiveHeapDeltaBytes","positiveRssDeltaBytes","surfaces","topOperations","candidateReasons"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModules":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModulesItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItems":{"type":"object","properties":{"bucketStart":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketStart"},"bucketEnd":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketEnd"},"bucketIntervalMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesBucketIntervalMs"},"stage":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesStage"},"partial":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesPartial"},"totals":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesTotals"},"modules":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItemsPropertiesModules"}},"required":["bucketStart","bucketEnd","bucketIntervalMs","stage","partial","totals","modules"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBuckets":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketsItems"}},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesCanClearTelemetry":{"type":"boolean"},"DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"generatedAt":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt"},"startedAt":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesStartedAt"},"enabled":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"},"bucketIntervalMs":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBucketIntervalMs"},"totals":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesTotals"},"thresholds":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesThresholds"},"modules":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesModules"},"candidates":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesCandidates"},"buckets":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesBuckets"},"canClearTelemetry":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses200ContentApplicationJsonSchemaPropertiesCanClearTelemetry"}},"required":["generatedAt","startedAt","enabled","bucketIntervalMs","totals","thresholds","modules","candidates","buckets"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsModuleTelemetryGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsModuleTelemetryGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryDeleteResponses200ContentApplicationJsonSchemaPropertiesCleared":{"type":"boolean"},"DocPathsConfigsModuleTelemetryDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"cleared":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses200ContentApplicationJsonSchemaPropertiesCleared"}},"required":["cleared"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesRuntimeMode":{"type":"string","enum":["development","production","test","unknown"]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesKey":{"type":"string","enum":["profiling","logging","security","caching","query_index","entities"]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesLabelKey":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKeyAnyOf0":{"type":"null"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKeyAnyOf1":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKeyAnyOf1"}]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesKey":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["boolean","string"]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesLabelKey":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDescriptionKey":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrlAnyOf0":{"type":"null"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrlAnyOf1":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrlAnyOf1"}]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValueAnyOf0":{"type":"null"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValueAnyOf1":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValueAnyOf1"}]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesState":{"type":"string","enum":["enabled","disabled","set","unset","unknown"]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValueAnyOf0":{"type":"null"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValueAnyOf1":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValueAnyOf1"}]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValueAnyOf0":{"type":"null"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValueAnyOf1":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValueAnyOf1"}]},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesKey"},"category":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesKind"},"labelKey":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesLabelKey"},"descriptionKey":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDescriptionKey"},"docUrl":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDocUrl"},"defaultValue":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesDefaultValue"},"state":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesState"},"value":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesValue"},"normalizedValue":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItemsPropertiesNormalizedValue"}},"required":["key","category","kind","labelKey","descriptionKey","docUrl","defaultValue","state","value","normalizedValue"],"additionalProperties":false},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItemsItems"}},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesKey"},"labelKey":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesLabelKey"},"descriptionKey":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesDescriptionKey"},"items":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItemsPropertiesItems"}},"required":["key","labelKey","descriptionKey","items"],"additionalProperties":false},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategories":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategoriesItems"}},"DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"generatedAt":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesGeneratedAt"},"runtimeMode":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesRuntimeMode"},"categories":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses200ContentApplicationJsonSchemaPropertiesCategories"}},"required":["generatedAt","runtimeMode","categories"],"additionalProperties":false},"DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsSystemStatusGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsSystemStatusPostResponses200ContentApplicationJsonSchemaPropertiesCleared":{"type":"boolean"},"DocPathsConfigsSystemStatusPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"cleared":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses200ContentApplicationJsonSchemaPropertiesCleared"}},"required":["cleared"],"additionalProperties":false},"DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsSystemStatusPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses503ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesVersion":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesId":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesVersion":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesMessage":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesCtaLabel":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesSuccessMessage":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLoadingLabel":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesId"},"version":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesVersion"},"message":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesMessage"},"ctaLabel":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesCtaLabel"},"successMessage":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesSuccessMessage"},"loadingLabel":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLoadingLabel"}},"required":["id","version","message","ctaLabel","successMessage","loadingLabel"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActionsItems"}},"DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesVersion"},"actions":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses200ContentApplicationJsonSchemaPropertiesActions"}},"required":["version","actions"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsPostRequestBodyContentApplicationJsonSchemaPropertiesActionId":{"type":"string","minLength":1},"DocPathsConfigsUpgradeActionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"actionId":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostRequestBodyContentApplicationJsonSchemaPropertiesActionId"}},"required":["actionId"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesVersion":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"message":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesMessage"},"version":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses200ContentApplicationJsonSchemaPropertiesVersion"}},"required":["status","message","version"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","pattern":"^[a-z0-9_]+:[a-z0-9_]+$"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9_]+$"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesKind":{"type":"string","enum":["text","multiline","integer","float","boolean","select","currency","relation","attachment","dictionary","phone","date","datetime"]},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesConfigJson":{},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesKind"},"configJson":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesConfigJson"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItemsPropertiesIsActive"}},"required":["key","kind"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionsItems"},"maxItems":1000},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesCode":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesIcon":{"type":"string","maxLength":100},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesCode":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesTitle":{"type":"string","maxLength":200},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesHint":{"type":"string","maxLength":500},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesTitle"},"hint":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesHint"}},"required":["code"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroups":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItems"}},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesLabel"},"icon":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesIcon"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesDescription"},"groups":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroups"}},"required":["code","label"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsets":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsetsItems"},"maxItems":20},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesSingleFieldsetPerRecord":{"type":"boolean"},"DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"definitions":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitions"},"fieldsets":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsets"},"singleFieldsetPerRecord":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostRequestBodyContentApplicationJsonSchemaPropertiesSingleFieldsetPerRecord"}},"required":["entityId","definitions"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1":{"type":"string"},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1"}]},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"version":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesVersion"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsBatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsBatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsBatchPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsBatchPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetParameters0Schema":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1"}]},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"configJson":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"organizationId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"}},"required":["id","key","kind","organizationId","tenantId"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesDeletedKeysItems":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesDeletedKeys":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesDeletedKeysItems"}},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesCode":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesIcon":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesCode":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesTitle":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesHint":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesTitle"},"hint":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItemsPropertiesHint"}},"required":["code"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroups":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroupsItems"}},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesLabel"},"icon":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesIcon"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesDescription"},"groups":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItemsPropertiesGroups"}},"required":["code","label"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsets":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsItems"}},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesSingleFieldsetPerRecord":{"type":"boolean"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"singleFieldsetPerRecord":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesSingleFieldsetPerRecord"}},"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1"}]},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"deletedKeys":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesDeletedKeys"},"fieldsets":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsets"},"settings":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesSettings"},"version":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesVersion"}},"required":["items","deletedKeys"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsManageGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsManageGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostRequestBodyContentApplicationJsonSchemaPropertiesKey"}},"required":["entityId","key"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesDefinitionsRestorePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsRestorePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsRestorePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf0":{"type":"string"},"DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf1Items":{"type":"string"},"DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf1Items"}},"DocPathsEntitiesDefinitionsGetParameters0Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetParameters0SchemaOneOf1"}]},"DocPathsEntitiesDefinitionsGetParameters1Schema":{"type":"string"},"DocPathsEntitiesDefinitionsGetParameters2Schema":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMulti":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRelatedEntityId":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItemsOneOf0":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItemsOneOf1":{"type":"number"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItemsOneOf1"}]},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsItems"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsUrl":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilterable":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFormEditable":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesListVisible":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEditor":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInput":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDictionaryId":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDictionaryInlineCreate":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"type":"number"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidation":{"type":"array","items":{}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf0":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf1":{"type":"number"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf2":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf3":{"type":"null"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValue":{"oneOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf1"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf2"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueOneOf3"}]},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxAttachmentSizeMb":{"type":"number"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAcceptExtensions":{"type":"array","items":{}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFieldset":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesCode":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesTitle":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesHint":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroup":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesTitle"},"hint":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroupPropertiesHint"}},"required":["code"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"multi":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMulti"},"relatedEntityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRelatedEntityId"},"options":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptions"},"optionsUrl":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionsUrl"},"filterable":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilterable"},"formEditable":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFormEditable"},"listVisible":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesListVisible"},"editor":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEditor"},"input":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInput"},"dictionaryId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDictionaryId"},"dictionaryInlineCreate":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDictionaryInlineCreate"},"priority":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"validation":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidation"},"defaultValue":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValue"},"maxAttachmentSizeMb":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxAttachmentSizeMb"},"acceptExtensions":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAcceptExtensions"},"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"fieldset":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFieldset"},"group":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGroup"}},"required":["key","kind","label","entityId"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesCode":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesIcon":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesCode":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesTitle":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesHint":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesTitle"},"hint":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItemsPropertiesHint"}},"required":["code"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroups":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroupsItems"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesLabel"},"icon":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesIcon"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesDescription"},"groups":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItemsPropertiesGroups"}},"required":["code","label"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalPropertiesItems"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntity":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntityAdditionalProperties"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettingsAdditionalPropertiesPropertiesSingleFieldsetPerRecord":{"type":"boolean"},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettingsAdditionalProperties":{"type":"object","properties":{"singleFieldsetPerRecord":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettingsAdditionalPropertiesPropertiesSingleFieldsetPerRecord"}},"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettings":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettingsAdditionalProperties"}},"DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"fieldsetsByEntity":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesFieldsetsByEntity"},"entitySettings":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses200ContentApplicationJsonSchemaPropertiesEntitySettings"}},"required":["items"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","pattern":"^[a-z0-9_]+:[a-z0-9_]+$"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9_]+$"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["text","multiline","integer","float","boolean","select","currency","relation","attachment","dictionary","phone","date","datetime"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesLabel":{"type":"string","maxLength":200},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItemsOneOf0":{"type":"string"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItemsOneOf1":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItemsOneOf1"}]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsItems"}},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsUrl":{"type":"string","format":"uri"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesMulti":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesEditor":{"type":"string"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesInput":{"type":"string"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFilterable":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFormEditable":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesListVisible":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesPriority":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesEncrypted":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesRelatedEntityId":{"type":"string"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDictionaryId":{"type":"string","format":"uuid"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDictionaryInlineCreate":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0PropertiesRule":{"type":"string","enum":["required"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0PropertiesRule"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0PropertiesMessage"}},"required":["rule","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1PropertiesRule":{"type":"string","enum":["date"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1PropertiesRule"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1PropertiesMessage"}},"required":["rule","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2PropertiesRule":{"type":"string","enum":["integer"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2PropertiesRule"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2PropertiesMessage"}},"required":["rule","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3PropertiesRule":{"type":"string","enum":["float"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3PropertiesRule"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3PropertiesMessage"}},"required":["rule","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesRule":{"type":"string","enum":["lt"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesParam":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesRule":{"type":"string","enum":["lte"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesParam":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesRule":{"type":"string","enum":["gt"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesParam":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesRule":{"type":"string","enum":["gte"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesParam":{"type":"number"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesRule":{"type":"string","enum":["eq"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesParam":{},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesRule":{"type":"string","enum":["ne"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesParam":{},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesRule":{"type":"string","enum":["regex"]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesParam":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesMessage":{"type":"string","minLength":1},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10":{"type":"object","properties":{"rule":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesRule"},"param":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesParam"},"message":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10PropertiesMessage"}},"required":["rule","param","message"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf1"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf2"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf3"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf4"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf5"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf6"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf7"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf8"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf9"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItemsOneOf10"}]},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidation":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidationItems"},"maxItems":32},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFieldset":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesCode":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesTitle":{"type":"string","maxLength":200},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesHint":{"type":"string","maxLength":500},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroup":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesTitle"},"hint":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroupPropertiesHint"}},"required":["code"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson":{"type":"object","properties":{"label":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDescription"},"options":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptions"},"optionsUrl":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesOptionsUrl"},"multi":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesMulti"},"editor":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesEditor"},"input":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesInput"},"filterable":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFilterable"},"formEditable":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFormEditable"},"listVisible":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesListVisible"},"priority":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesPriority"},"encrypted":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesEncrypted"},"relatedEntityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesRelatedEntityId"},"dictionaryId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDictionaryId"},"dictionaryInlineCreate":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesDictionaryInlineCreate"},"validation":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesValidation"},"fieldset":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesFieldset"},"group":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonPropertiesGroup"}},"additionalProperties":true},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"configJson":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["entityId","key","kind"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesKey":{"type":"string"},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesKind":{"type":"string"},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson":{"type":"object","additionalProperties":true},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesKind"},"configJson":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsActive"}},"required":["id","key","kind","configJson"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"key":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesKey"}},"required":["entityId","key"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0":{"type":"null"},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersionAnyOf1"}]},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"version":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesVersion"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesDefinitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesDefinitionsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEncryptionGetParameters0Schema":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesField":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf1":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashField":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf1"}]},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItems":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesField"},"hashField":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashField"}},"required":["field"],"additionalProperties":false},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFieldsItems"}},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesEntityId"},"fields":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFields"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["entityId","fields"],"additionalProperties":false},"DocPathsEntitiesEncryptionGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEncryptionGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","pattern":"^[a-z0-9_]+:[a-z0-9_]+$"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesField":{"type":"string","minLength":1,"maxLength":200},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf1":{"type":"string","minLength":1,"maxLength":200},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashField":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashFieldAnyOf1"}]},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItems":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesField"},"hashField":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItemsPropertiesHashField"}},"required":["field"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFieldsItems"},"minItems":1},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"tenantId":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"fields":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesFields"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["entityId","fields"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesCurrentUpdatedAt":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesExpectedUpdatedAt":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesCode"},"currentUpdatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesCurrentUpdatedAt"},"expectedUpdatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses409ContentApplicationJsonSchemaPropertiesExpectedUpdatedAt"}},"required":["error","code","currentUpdatedAt","expectedUpdatedAt"],"additionalProperties":false},"DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string","enum":["organization_selection_invalid"]},"DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string","enum":["code","custom"]},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelField":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEditor":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShowInSidebar":{"type":"boolean"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccessRestricted":{"type":"boolean"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCount":{"type":"number"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"source":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"labelField":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelField"},"defaultEditor":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEditor"},"showInSidebar":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShowInSidebar"},"accessRestricted":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccessRestricted"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"count":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCount"}},"required":["entityId","source","label","count"],"additionalProperties":false},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsEntitiesEntitiesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","pattern":"^[a-z0-9_]+:[a-z0-9_]+$"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":200},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelField":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-zA-Z_][a-zA-Z0-9_]*$"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultEditor":{"type":"string","enum":["markdown","simpleMarkdown","htmlRichText","plain"]},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebarAllOf0":{"type":"boolean"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebar":{"allOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebarAllOf0"}],"default":false},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAccessRestrictedAllOf0":{"type":"boolean"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAccessRestricted":{"allOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAccessRestrictedAllOf0"}],"default":false},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"labelField":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelField"},"defaultEditor":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultEditor"},"showInSidebar":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebar"},"accessRestricted":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAccessRestricted"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["entityId","label"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesLabel":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription"}},"required":["id","entityId","label"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEntitiesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId"}},"required":["entityId"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsEntitiesEntitiesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitiesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitiesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault":{"type":"boolean"},"DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"newEntitiesRestrictedByDefault":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["newEntitiesRestrictedByDefault"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault":{"type":"boolean"},"DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedUpdatedAt":{"type":"string"},"DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"newEntitiesRestrictedByDefault":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault"},"expectedUpdatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedUpdatedAt"}},"required":["newEntitiesRestrictedByDefault"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault":{"type":"boolean"},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"newEntitiesRestrictedByDefault":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesNewEntitiesRestrictedByDefault"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["ok","newEntitiesRestrictedByDefault"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsEntitiesEntitySettingsPutResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["code","error"],"additionalProperties":false},"DocPathsEntitiesRecordsGetParameters0Schema":{"type":"string","minLength":1},"DocPathsEntitiesRecordsGetParameters1Schema":{"type":"number"},"DocPathsEntitiesRecordsGetParameters2Schema":{"type":"number"},"DocPathsEntitiesRecordsGetParameters3Schema":{"type":"string"},"DocPathsEntitiesRecordsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsEntitiesRecordsGetParameters5Schema":{"type":"string"},"DocPathsEntitiesRecordsGetParameters6Schema":{"type":"string"},"DocPathsEntitiesRecordsGetParameters7Schema":{"type":"boolean"},"DocPathsEntitiesRecordsGetParameters8Schema":{"type":"string","enum":["csv","json","xml","markdown"]},"DocPathsEntitiesRecordsGetParameters9Schema":{"type":"string","enum":["full"]},"DocPathsEntitiesRecordsGetParameters10Schema":{"type":"string","enum":["full"]},"DocPathsEntitiesRecordsGetParameters11Schema":{"type":"boolean"},"DocPathsEntitiesRecordsGetParameters12Schema":{"type":"boolean"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","additionalProperties":true},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsEntitiesRecordsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesRecordsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesRecordId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesValuesAllOf0":{"type":"object","additionalProperties":true},"DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesValues":{"allOf":[{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesValuesAllOf0"}],"default":{}},"DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesRecordId"},"values":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostRequestBodyContentApplicationJsonSchemaPropertiesValues"}},"required":["entityId"],"additionalProperties":false},"DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId":{"type":"string"},"DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRecordId":{"type":"string"},"DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRecordId"}},"required":["entityId","recordId"],"additionalProperties":false},"DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesRecordsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesRecordsPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesRecordId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesValuesAllOf0":{"type":"object","additionalProperties":true},"DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesValues":{"allOf":[{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesValuesAllOf0"}],"default":{}},"DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesRecordId"},"values":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutRequestBodyContentApplicationJsonSchemaPropertiesValues"}},"required":["entityId","recordId"],"additionalProperties":false},"DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId":{"type":"string"},"DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRecordId":{"type":"string"},"DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRecordId"}},"required":["entityId","recordId"],"additionalProperties":false},"DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesRecordsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesRecordsPutResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsPutResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchemaPropertiesRecordId":{"type":"string","minLength":1},"DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteRequestBodyContentApplicationJsonSchemaPropertiesRecordId"}},"required":["entityId","recordId"],"additionalProperties":false},"DocPathsEntitiesRecordsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEntitiesRecordsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEntitiesRecordsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesRecordsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRecordsDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRecordsDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEntitiesRelationsOptionsGetParameters0Schema":{"type":"string","minLength":1},"DocPathsEntitiesRelationsOptionsGetParameters1Schema":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetParameters2Schema":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetParameters3Schema":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetParameters4Schema":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRouteContext":{"type":"object","additionalProperties":true},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"routeContext":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRouteContext"}},"required":["value","label"],"additionalProperties":false},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsEntitiesRelationsOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesRelationsOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesRelationsOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHref":{"type":"string"},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"label":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"href":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHref"}},"required":["entityId","label","href"],"additionalProperties":false},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsEntitiesSidebarEntitiesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesSidebarEntitiesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEntitiesSidebarEntitiesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEntitiesSidebarEntitiesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQueryIndexPurgePostRequestBodyContentApplicationJsonSchemaPropertiesEntityType":{"type":"string","minLength":1},"DocPathsQueryIndexPurgePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityType":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostRequestBodyContentApplicationJsonSchemaPropertiesEntityType"}},"required":["entityType"],"additionalProperties":false},"DocPathsQueryIndexPurgePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsQueryIndexPurgePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsQueryIndexPurgePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexPurgePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexPurgePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexPurgePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexPurgePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexPurgePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityType":{"type":"string","minLength":1,"pattern":"^[a-z][a-z0-9_]*:[a-z][a-z0-9_]*$"},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesForce":{"type":"boolean"},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesBatchSize":{"type":"number"},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionCount":{"type":"number"},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionIndex":{"type":"number"},"DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityType":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityType"},"force":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesForce"},"batchSize":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesBatchSize"},"partitionCount":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionCount"},"partitionIndex":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionIndex"}},"required":["entityType"],"additionalProperties":false},"DocPathsQueryIndexReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsQueryIndexReindexPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsQueryIndexReindexPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexReindexPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexReindexPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexReindexPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexReindexPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexReindexPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorEnabled":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorIndexingActive":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextEnabled":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCustomFields":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOk":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueryIndexOk":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStatus":{"type":"string","enum":["idle","reindexing","purging","stalled","failed"]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndexAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndexAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndex":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndexAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndexAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStatus":{"type":"string","enum":["reindexing","purging","stalled","completed","failed"]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAtAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItems":{"type":"object","properties":{"partitionIndex":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionIndex"},"partitionCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesPartitionCount"},"status":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStatus"},"startedAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStartedAt"},"finishedAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesFinishedAt"},"heartbeatAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesHeartbeatAt"},"processedCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCount"}},"required":["status"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItems"}},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesProcessedCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesTotalCountAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitionsItemsPropertiesStatus"},"processedCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1PropertiesTotalCount"}},"required":["status"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScope":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScopeAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJob":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStatus"},"startedAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStartedAt"},"finishedAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesFinishedAt"},"heartbeatAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesHeartbeatAt"},"processedCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesTotalCount"},"partitions":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesPartitions"},"scope":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesScope"}},"required":["status"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAtAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAtAnyOf1":{"type":"string","format":"datetime"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAtAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"label":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"baseCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseCount"},"indexCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexCount"},"vectorCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorCount"},"vectorEnabled":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorEnabled"},"vectorIndexingActive":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVectorIndexingActive"},"fulltextCount":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextCount"},"fulltextEnabled":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulltextEnabled"},"hasCustomFields":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCustomFields"},"ok":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOk"},"queryIndexOk":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueryIndexOk"},"job":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJob"},"refreshedAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefreshedAt"}},"required":["entityId","label","baseCount","indexCount","ok","job"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesId":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesSource":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesHandler":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityTypeAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityTypeAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityTypeAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesMessage":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStackAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStackAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStack":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStackAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStackAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesPayloadAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesPayload":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesPayloadAnyOf0"},{}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOccurredAt":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesId"},"source":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesSource"},"handler":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesHandler"},"entityType":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityType"},"recordId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesRecordId"},"tenantId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOrganizationId"},"message":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesMessage"},"stack":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesStack"},"payload":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesPayload"},"occurredAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesOccurredAt"}},"required":["id","source","handler","entityType","recordId","tenantId","organizationId","message","stack","payload","occurredAt"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrorsItems"}},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesId":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesSource":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesHandler":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesLevel":{"type":"string","enum":["info","warn"]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityTypeAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityTypeAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityTypeAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationIdAnyOf1":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesMessage":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesDetailsAnyOf0":{"type":"null"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesDetails":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesDetailsAnyOf0"},{}]},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOccurredAt":{"type":"string"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesId"},"source":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesSource"},"handler":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesHandler"},"level":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesLevel"},"entityType":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesEntityType"},"recordId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesRecordId"},"tenantId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOrganizationId"},"message":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesMessage"},"details":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesDetails"},"occurredAt":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItemsPropertiesOccurredAt"}},"required":["id","source","handler","level","entityType","recordId","tenantId","organizationId","message","details","occurredAt"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogs":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogsItems"}},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"errors":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesErrors"},"logs":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesLogs"}},"required":["items","errors","logs"],"additionalProperties":false},"DocPathsQueryIndexStatusGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexStatusGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexStatusGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexStatusGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQueryIndexStatusGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQueryIndexStatusGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsVersionGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsAuditLogsAuditLogsAccessGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsAccessGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsAccessGetParameters2Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters3Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters4Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters5Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters6Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters7Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetParameters8Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKind":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceId":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccessType":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFieldsItems":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFieldsItems"}},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContext":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf1"}]},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"resourceKind":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKind"},"resourceId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceId"},"accessType":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccessType"},"actorUserId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserId"},"actorUserName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserName"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"tenantName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"organizationId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName"},"fields":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFields"},"context":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContext"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id","resourceKind","resourceId","accessType","actorUserId","actorUserName","tenantId","tenantName","organizationId","organizationName","fields","context","createdAt"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesCanViewTenant":{"type":"boolean"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"canViewTenant":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesCanViewTenant"},"page":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"total":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"totalPages":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","canViewTenant","page","pageSize","total","totalPages"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsAccessGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsAccessGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsAccessGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsAccessGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsExportGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters1Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters2Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters3Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters4Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters5Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters6Schema":{"type":"string","enum":["true","false"]},"DocPathsAuditLogsAuditLogsActionsExportGetParameters7Schema":{"type":"string","enum":["true","false"]},"DocPathsAuditLogsAuditLogsActionsExportGetParameters8Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters9Schema":{"type":"string","enum":["createdAt","user","action","field","source"]},"DocPathsAuditLogsAuditLogsActionsExportGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsAuditLogsAuditLogsActionsExportGetParameters11Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetParameters12Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetResponses200ContentApplicationJsonSchemaPropertiesFile":{"type":"string","enum":["csv"]},"DocPathsAuditLogsAuditLogsActionsExportGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"file":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses200ContentApplicationJsonSchemaPropertiesFile"}},"required":["file"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsExportGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsExportGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsExportGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsExportGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsRedoPostRequestBodyContentApplicationJsonSchemaPropertiesLogId":{"type":"string","minLength":1},"DocPathsAuditLogsAuditLogsActionsRedoPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"logId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostRequestBodyContentApplicationJsonSchemaPropertiesLogId"}},"required":["logId"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogIdAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoTokenAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoTokenAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoToken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoTokenAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoTokenAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"logId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesLogId"},"undoToken":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses200ContentApplicationJsonSchemaPropertiesUndoToken"}},"required":["ok","logId","undoToken"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsRedoPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsActionsGetParameters1Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters2Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters3Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters4Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters5Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters6Schema":{"type":"string","enum":["true","false"]},"DocPathsAuditLogsAuditLogsActionsGetParameters7Schema":{"type":"string","enum":["true","false"]},"DocPathsAuditLogsAuditLogsActionsGetParameters8Schema":{"type":"string","enum":["true","false"]},"DocPathsAuditLogsAuditLogsActionsGetParameters9Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters10Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters11Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters12Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters13Schema":{"type":"string","enum":["createdAt","user","action","field","source"]},"DocPathsAuditLogsAuditLogsActionsGetParameters14Schema":{"type":"string","enum":["asc","desc"]},"DocPathsAuditLogsAuditLogsActionsGetParameters15Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetParameters16Schema":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommandId":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabelAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabelAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabelAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExecutionState":{"type":"string","enum":["done","undone","failed","redone"]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKindAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKindAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKindAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceIdAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKindAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKindAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKindAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceIdAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceIdAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceIdAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoTokenAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoTokenAnyOf1":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoToken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoTokenAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoTokenAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotBeforeAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotBefore":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotBeforeAnyOf0"},{}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotAfterAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotAfter":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotAfterAnyOf0"},{}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangesAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChanges":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangesAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangesAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf0":{"type":"null"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContext":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf0"},{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextAnyOf1"}]},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"commandId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommandId"},"actionLabel":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionLabel"},"executionState":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExecutionState"},"actorUserId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserId"},"actorUserName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorUserName"},"tenantId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"tenantName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"organizationId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName"},"resourceKind":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceKind"},"resourceId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResourceId"},"parentResourceKind":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceKind"},"parentResourceId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentResourceId"},"undoToken":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUndoToken"},"createdAt":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"snapshotBefore":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotBefore"},"snapshotAfter":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSnapshotAfter"},"changes":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChanges"},"context":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContext"}},"required":["id","commandId","actionLabel","executionState","actorUserId","actorUserName","tenantId","tenantName","organizationId","organizationName","resourceKind","resourceId","undoToken","createdAt","updatedAt","snapshotBefore","snapshotAfter","changes","context"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesCanViewTenant":{"type":"boolean"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"canViewTenant":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesCanViewTenant"},"page":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"total":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"totalPages":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","canViewTenant","page","pageSize","total","totalPages"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostRequestBodyContentApplicationJsonSchemaPropertiesUndoToken":{"type":"string","minLength":1},"DocPathsAuditLogsAuditLogsActionsUndoPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"undoToken":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostRequestBodyContentApplicationJsonSchemaPropertiesUndoToken"}},"required":["undoToken"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchemaPropertiesLogId":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"logId":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses200ContentApplicationJsonSchemaPropertiesLogId"}},"required":["ok","logId"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuditLogsAuditLogsActionsUndoPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsAdminPreferencesGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsAdminPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsAdminPreferencesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsAdminPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsAdminPreferencesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsAdminPreferencesPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsAdminPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsAdminPreferencesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsAdminPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsAdminPreferencesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsAdminPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsBatchPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsBatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsBatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsBatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsBatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsBatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsBatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsChannelsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsChannelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsChannelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsFeaturePostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsFeaturePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsFeaturePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsFeaturePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsFeaturePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsFeaturePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsFeaturePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsMarkAllReadPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPreferencesGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPreferencesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPreferencesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPreferencesPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPreferencesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPreferencesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPreferencesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsRolePostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsRolePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsRolePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsRolePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsRolePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsRolePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsRolePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsGetParameters0SchemaOneOf0":{"type":"string","enum":["unread","read","actioned","dismissed"]},"DocPathsNotificationsGetParameters0SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters0SchemaOneOf0"}},"DocPathsNotificationsGetParameters0Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters0SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetParameters0SchemaOneOf1"}]},"DocPathsNotificationsGetParameters1Schema":{"type":"string"},"DocPathsNotificationsGetParameters2Schema":{"type":"string","enum":["info","warning","success","error"]},"DocPathsNotificationsGetParameters3Schema":{"type":"string"},"DocPathsNotificationsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsNotificationsGetParameters5Schema":{"type":"string","format":"datetime"},"DocPathsNotificationsGetParameters6Schema":{"type":"number"},"DocPathsNotificationsGetParameters7Schema":{"type":"number"},"DocPathsNotificationsGetParameters8Schema":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKeyAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKeyAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKeyAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKeyAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKeyAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKeyAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf1AdditionalProperties":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf1":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf1AdditionalProperties"}},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariables":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariablesAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf1AdditionalProperties":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf1":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf1AdditionalProperties"}},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariables":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariablesAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeverity":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesId":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabel":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesVariant":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIcon"}},"required":["id","label"],"additionalProperties":false},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItems"}},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryActionId":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModule":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHrefAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHrefAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHrefAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf0":{"type":"null"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf1":{"type":"string"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTaken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf0"},{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf1"}]},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"title":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"body":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody"},"titleKey":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleKey"},"bodyKey":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyKey"},"titleVariables":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleVariables"},"bodyVariables":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyVariables"},"icon":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"severity":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeverity"},"status":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"actions":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryActionId"},"sourceModule":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModule"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityId"},"linkHref":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkHref"},"createdAt":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"readAt":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAt"},"actionTaken":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTaken"}},"required":["id","type","title","severity","status","actions","createdAt"],"additionalProperties":false},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsNotificationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsNotificationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsNotificationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsNotificationsGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","minLength":1,"maxLength":100},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleKey":{"type":"string","minLength":1,"maxLength":200},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyKey":{"type":"string","minLength":1,"maxLength":200},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleVariablesAdditionalProperties":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleVariables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleVariablesAdditionalProperties"}},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyVariablesAdditionalProperties":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyVariables":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyVariablesAdditionalProperties"}},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":500},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","maxLength":2000},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"type":"string","maxLength":100},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSeverityAllOf0":{"type":"string","enum":["info","warning","success","error"]},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSeverity":{"allOf":[{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSeverityAllOf0"}],"default":"info"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLabel":{"type":"string","minLength":1},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline","ghost"]},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesHref":{"type":"string","minLength":1},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesHref"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","label"],"additionalProperties":false},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItems"}},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryActionId":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModule":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId":{"type":"string","format":"uuid"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesGroupKey":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string","format":"datetime"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesDataAdditionalProperties":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesData":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesDataAdditionalProperties"}},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesSound":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesBadge":{"type":"number"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesImage":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesPriority":{"type":"string","enum":["high","normal"]},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesChannelId":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesBody":{"type":"string"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptions":{"type":"object","properties":{"sound":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesSound"},"badge":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesBadge"},"image":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesImage"},"priority":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesPriority"},"channelId":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesChannelId"},"body":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptionsPropertiesBody"}},"additionalProperties":true},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesChannelsItems":{"type":"string","minLength":1,"maxLength":32},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesChannels":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesChannelsItems"},"minItems":1},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientUserId":{"type":"string","format":"uuid"},"DocPathsNotificationsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"titleKey":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleKey"},"bodyKey":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyKey"},"titleVariables":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitleVariables"},"bodyVariables":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBodyVariables"},"title":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"body":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"icon":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"severity":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSeverity"},"actions":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryActionId"},"sourceModule":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModule"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId"},"linkHref":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesActionsItemsPropertiesHref"},"groupKey":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesGroupKey"},"expiresAt":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt"},"data":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesData"},"pushOptions":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesPushOptions"},"channels":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesChannels"},"recipientUserId":{"$ref":"#/components/schemas/DocPathsNotificationsPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientUserId"}},"required":["type","recipientUserId"],"additionalProperties":false},"DocPathsNotificationsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsNotificationsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsNotificationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsSettingsPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsSettingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsSettingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsSettingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsSettingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsSettingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsTypesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesPatchResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsTypesPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsUnreadCountGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdActionPostParameters0Schema":{"type":"string"},"DocPathsNotificationsIdActionPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdDismissPutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdDismissPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdReadPutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdReadPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdRestorePutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdRestorePutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsIdRestorePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdRestorePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdRestorePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesIdChannelsChannelPutParameters0Schema":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelPutParameters1Schema":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsNotificationsTypesIdChannelsChannelPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesIdChannelsChannelPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesIdChannelsChannelDeleteParameters0Schema":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelDeleteParameters1Schema":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsTypesIdChannelsChannelDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsTypesIdChannelsChannelDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsTypesIdChannelsChannelDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesWidgetId":{"type":"string","minLength":1},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesOrder":{"type":"number"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesPriority":{"type":"number"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesSize":{"type":"string","enum":["sm","md","lg"]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesSettings":{},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesId"},"widgetId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesWidgetId"},"order":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesOrder"},"priority":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesPriority"},"size":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesSize"},"settings":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesSettings"}},"required":["id","widgetId","order"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItems"},"maxItems":100},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayout":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesAllowedWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesWidgetId"}},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesCanConfigure":{"type":"boolean"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserNameAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserNameAnyOf1":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserNameAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmailAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmailAnyOf1":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmailAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserLabel":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContext":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserId"},"tenantId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesOrganizationId"},"userName":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserName"},"userEmail":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserEmail"},"userLabel":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContextPropertiesUserLabel"}},"required":["userId","tenantId","organizationId","userName","userEmail","userLabel"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesTitle":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSize":{"type":"string","enum":["sm","md","lg"]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultEnabled":{"type":"boolean"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSettingsAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSettings":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSettingsAnyOf0"},{}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesFeaturesItems":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesFeaturesItems"}},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesModuleId":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIconAnyOf1"}]},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesLoaderKey":{"type":"string"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesSupportsRefresh":{"type":"boolean"},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayoutPropertiesItemsItemsPropertiesWidgetId"},"title":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDescription"},"defaultSize":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSize"},"defaultEnabled":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultEnabled"},"defaultSettings":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesDefaultSettings"},"features":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesFeatures"},"moduleId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesModuleId"},"icon":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesIcon"},"loaderKey":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesLoaderKey"},"supportsRefresh":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItemsPropertiesSupportsRefresh"}},"required":["id","title","description","defaultSize","defaultEnabled","defaultSettings","features","moduleId","icon","loaderKey","supportsRefresh"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgets":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgetsItems"}},"DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"layout":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesLayout"},"allowedWidgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesAllowedWidgetIds"},"canConfigure":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesCanConfigure"},"context":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesContext"},"widgets":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses200ContentApplicationJsonSchemaPropertiesWidgets"}},"required":["layout","allowedWidgetIds","canConfigure","context","widgets"],"additionalProperties":false},"DocPathsDashboardsLayoutGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWidgetId":{"type":"string","minLength":1},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrder":{"type":"number"},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"type":"number"},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSize":{"type":"string","enum":["sm","md","lg"]},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettings":{},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"widgetId":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWidgetId"},"order":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrder"},"priority":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"size":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSize"},"settings":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettings"}},"required":["id","widgetId","order"],"additionalProperties":false},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItems"},"maxItems":100},"DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutRequestBodyContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDashboardsLayoutPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDashboardsLayoutPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDashboardsLayoutPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutPutResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutPutResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesHasCustom":{"type":"boolean"},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScope":{"type":"object","properties":{"tenantId":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationId"}},"required":["tenantId","organizationId"],"additionalProperties":false},"DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIds"},"hasCustom":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesHasCustom"},"scope":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScope"}},"required":["widgetIds","hasCustom","scope"],"additionalProperties":false},"DocPathsDashboardsRolesWidgetsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems"},"maxItems":200},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"roleId":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesRoleId"},"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIds"}},"required":["roleId","widgetIds"],"additionalProperties":false},"DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIds"}},"required":["ok","widgetIds"],"additionalProperties":false},"DocPathsDashboardsRolesWidgetsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsUsersWidgetsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsUsersWidgetsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesMode":{"type":"string","enum":["inherit","override"]},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesHasCustom":{"type":"boolean"},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesEffectiveWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantIdAnyOf1"}]},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScope":{"type":"object","properties":{"tenantId":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScopePropertiesOrganizationId"}},"required":["tenantId","organizationId"],"additionalProperties":false},"DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesMode"},"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesWidgetIds"},"hasCustom":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesHasCustom"},"effectiveWidgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesEffectiveWidgetIds"},"scope":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses200ContentApplicationJsonSchemaPropertiesScope"}},"required":["mode","widgetIds","hasCustom","effectiveWidgetIds","scope"],"additionalProperties":false},"DocPathsDashboardsUsersWidgetsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0":{"type":"string","enum":["inherit","override"]},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0"}],"default":"inherit"},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems"},"maxItems":200},"DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"},"mode":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesMode"},"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIds"}},"required":["userId","widgetIds"],"additionalProperties":false},"DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesMode":{"type":"string","enum":["inherit","override"]},"DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"mode":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesMode"},"widgetIds":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses200ContentApplicationJsonSchemaPropertiesWidgetIds"}},"required":["ok","mode","widgetIds"],"additionalProperties":false},"DocPathsDashboardsUsersWidgetsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesEntityType":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetricPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetricPropertiesAggregate":{"type":"string","enum":["count","sum","avg","min","max"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetric":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetricPropertiesField"},"aggregate":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetricPropertiesAggregate"}},"required":["field","aggregate"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesGranularity":{"type":"string","enum":["day","week","month","quarter","year"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesLimit":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesResolveLabels":{"type":"boolean"},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupBy":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesField"},"granularity":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesGranularity"},"limit":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesLimit"},"resolveLabels":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupByPropertiesResolveLabels"}},"required":["field"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesOperator":{"type":"string","enum":["in","not_in"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf0":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf2":{"type":"boolean"},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf1"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf2"}]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValue":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValueItems"},"maxItems":200},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0PropertiesValue"}},"required":["field","operator","value"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesOperator":{"type":"string","enum":["eq","neq","gt","gte","lt","lte","is_null","is_not_null"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesValue":{},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1PropertiesValue"}},"required":["field","operator"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsOneOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFilters":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItems"}},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRangePropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRangePropertiesPreset":{"type":"string","enum":["today","yesterday","this_week","last_week","this_month","last_month","this_quarter","last_quarter","this_year","last_year","last_7_days","last_30_days","last_90_days"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRange":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRangePropertiesField"},"preset":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRangePropertiesPreset"}},"required":["field","preset"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesComparisonPropertiesType":{"type":"string","enum":["previous_period","previous_year"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesComparison":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesComparisonPropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequest":{"type":"object","properties":{"entityType":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesEntityType"},"metric":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesMetric"},"groupBy":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesGroupBy"},"filters":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFilters"},"dateRange":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesDateRange"},"comparison":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesComparison"}},"required":["entityType","metric"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesId"},"request":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequest"}},"required":["id","request"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequests":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItems"},"minItems":1,"maxItems":50},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"requests":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequests"}},"required":["requests"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesId":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesGroupKey":{},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesGroupLabel":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItems":{"type":"object","properties":{"groupKey":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesGroupKey"},"groupLabel":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesGroupLabel"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItemsPropertiesValue"}},"required":["groupKey","value"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesData":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesDataItems"}},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesChange":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesDirection":{"type":"string","enum":["up","down","unchanged"]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparison":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesValue"},"change":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesChange"},"direction":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparisonPropertiesDirection"}},"required":["value","change","direction"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesFetchedAt":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesRecordCount":{"type":"number"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrencyAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrencyAnyOf1":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrencyAnyOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadata":{"type":"object","properties":{"fetchedAt":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesFetchedAt"},"recordCount":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesRecordCount"},"currency":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesCurrency"}},"required":["fetchedAt","recordCount"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesData":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesValue"},"data":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesData"},"comparison":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesComparison"},"metadata":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadata"}},"required":["value","data","metadata"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesId"},"ok":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesOk"},"data":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesData"}},"required":["id","ok","data"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesId":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesOk":{"type":"boolean","enum":[false]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesId"},"ok":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesOk"},"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1PropertiesError"}},"required":["id","ok","error"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf1"}]},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResults":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItems"}},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"results":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResults"}},"required":["results"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataBatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataBatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataBatchPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataBatchPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesEntityType":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetricPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetricPropertiesAggregate":{"type":"string","enum":["count","sum","avg","min","max"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetric":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetricPropertiesField"},"aggregate":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetricPropertiesAggregate"}},"required":["field","aggregate"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesGranularity":{"type":"string","enum":["day","week","month","quarter","year"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesLimit":{"type":"number"},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesResolveLabels":{"type":"boolean"},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupBy":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesField"},"granularity":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesGranularity"},"limit":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesLimit"},"resolveLabels":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupByPropertiesResolveLabels"}},"required":["field"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesOperator":{"type":"string","enum":["in","not_in"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf0":{"type":"string"},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf2":{"type":"boolean"},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf1"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItemsOneOf2"}]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValue":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValueItems"},"maxItems":200},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0PropertiesValue"}},"required":["field","operator","value"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesOperator":{"type":"string","enum":["eq","neq","gt","gte","lt","lte","is_null","is_not_null"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesValue":{},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1PropertiesValue"}},"required":["field","operator"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsOneOf1"}]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFilters":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItems"}},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRangePropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRangePropertiesPreset":{"type":"string","enum":["today","yesterday","this_week","last_week","this_month","last_month","this_quarter","last_quarter","this_year","last_year","last_7_days","last_30_days","last_90_days"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRange":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRangePropertiesField"},"preset":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRangePropertiesPreset"}},"required":["field","preset"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesComparisonPropertiesType":{"type":"string","enum":["previous_period","previous_year"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesComparison":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesComparisonPropertiesType"}},"required":["type"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityType":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesEntityType"},"metric":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesMetric"},"groupBy":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesGroupBy"},"filters":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFilters"},"dateRange":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesDateRange"},"comparison":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesComparison"}},"required":["entityType","metric"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesGroupKey":{},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesGroupLabel":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItems":{"type":"object","properties":{"groupKey":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesGroupKey"},"groupLabel":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesGroupLabel"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesValue"}},"required":["groupKey","value"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesData":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesDataItems"}},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValueAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValueAnyOf1":{"type":"number"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValueAnyOf1"}]},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesChange":{"type":"number"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesDirection":{"type":"string","enum":["up","down","unchanged"]},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparison":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesValue"},"change":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesChange"},"direction":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparisonPropertiesDirection"}},"required":["value","change","direction"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesFetchedAt":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesRecordCount":{"type":"number"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrencyAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrencyAnyOf1":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrencyAnyOf1"}]},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","properties":{"fetchedAt":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesFetchedAt"},"recordCount":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesRecordCount"},"currency":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesCurrency"}},"required":["fetchedAt","recordCount"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesValue"},"data":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesData"},"comparison":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesComparison"},"metadata":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadata"}},"required":["value","data","metadata"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsDataPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutItemIdPatchParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSize":{"type":"string","enum":["sm","md","lg"]},"DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSettings":{},"DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"size":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSize"},"settings":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSettings"}},"additionalProperties":false},"DocPathsDashboardsLayoutItemIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDashboardsLayoutItemIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDashboardsLayoutItemIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutItemIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutItemIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutItemIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsLayoutItemIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutItemIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSize":{"type":"string","enum":["sm","md","lg"]},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEnabled":{"type":"boolean"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSettingsAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSettings":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSettingsAnyOf0"},{}]},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeaturesItems":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeatures":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeaturesItems"}},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModuleId":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLoaderKey":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupportsRefresh":{"type":"boolean"},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"defaultSize":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSize"},"defaultEnabled":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEnabled"},"defaultSettings":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSettings"},"features":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeatures"},"moduleId":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModuleId"},"icon":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"loaderKey":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLoaderKey"},"supportsRefresh":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupportsRefresh"}},"required":["id","title","description","defaultSize","defaultEnabled","defaultSettings","features","moduleId","icon","loaderKey","supportsRefresh"],"additionalProperties":false},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDashboardsWidgetsCatalogGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesId":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesLabel":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesDescription":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesCategory":{"type":"string","enum":["crud","lifecycle","system","custom"]},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesModule":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesEntity":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesExcludeFromTriggers":{"type":"boolean"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesClientBroadcast":{"type":"boolean"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesCrossProcessBroadcast":{"type":"boolean"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPortalBroadcast":{"type":"boolean"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesPath":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesType":{"type":"string","enum":["text","number","boolean","select","date","object","unknown"]},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesLabel":{"type":"string"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesOptional":{"type":"boolean"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItems":{"type":"object","properties":{"path":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesPath"},"type":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesType"},"label":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesLabel"},"optional":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItemsPropertiesOptional"}},"required":["path","type"],"additionalProperties":false},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFieldsItems"}},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchema":{"type":"object","properties":{"fields":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchemaPropertiesFields"}},"required":["fields"],"additionalProperties":false},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesCategory"},"module":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesModule"},"entity":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesEntity"},"excludeFromTriggers":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesExcludeFromTriggers"},"clientBroadcast":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesClientBroadcast"},"crossProcessBroadcast":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesCrossProcessBroadcast"},"portalBroadcast":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPortalBroadcast"},"payloadSchema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPayloadSchema"}},"required":["id","label"],"additionalProperties":false},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesData":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItems"}},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEventsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesData"},"total":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"}},"required":["data","total"],"additionalProperties":false},"DocPathsEventsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEventsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEventsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEventsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEventsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEventsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEventsStreamGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsEventsStreamGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEventsStreamGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesJobsRemoved":{"type":"number"},"DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"jobsRemoved":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesJobsRemoved"}},"required":["ok","jobsRemoved"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPurgeFirst":{"type":"boolean"},"DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"purgeFirst":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostRequestBodyContentApplicationJsonSchemaPropertiesPurgeFirst"}},"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesRecordsIndexed":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesJobsEnqueued":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntitiesProcessed":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityId":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesEntityId"},"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItemsPropertiesError"}},"required":["entityId","error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItems"}},"DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"recordsIndexed":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesRecordsIndexed"},"jobsEnqueued":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesJobsEnqueued"},"entitiesProcessed":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntitiesProcessed"},"errors":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses200ContentApplicationJsonSchemaPropertiesErrors"}},"required":["ok"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesType":{"type":"string","enum":["fulltext","vector"]},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesAction":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesStartedAt":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesElapsedMinutes":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf1"}]},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf1"}]},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLock":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesType"},"action":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesAction"},"startedAt":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesStartedAt"},"elapsedMinutes":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesElapsedMinutes"},"processedCount":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCount"}},"required":["type","action","startedAt","elapsedMinutes"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesError"},"lock":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses409ContentApplicationJsonSchemaPropertiesLock"}},"required":["error","lock"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsReindexPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsReindexPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsReindexPostResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesOpenaiConfigured":{"type":"boolean"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingEnabled":{"type":"boolean"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingLocked":{"type":"boolean"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf1":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf1"}]},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId":{"type":"string","enum":["openai","google","mistral","cohere","bedrock","ollama"]},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesModel":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesDimension":{"type":"number"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesOutputDimensionality":{"type":"number"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesBaseUrl":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesUpdatedAt":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1":{"type":"object","properties":{"providerId":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId"},"model":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesModel"},"dimension":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesDimension"},"outputDimensionality":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesOutputDimensionality"},"baseUrl":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesBaseUrl"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesUpdatedAt"}},"required":["providerId","model","dimension"],"additionalProperties":false},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1"}]},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesConfiguredProviders":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId"}},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimension":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf1"}]},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexRequired":{"type":"boolean"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf1"}]},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"openaiConfigured":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesOpenaiConfigured"},"autoIndexingEnabled":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingEnabled"},"autoIndexingLocked":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingLocked"},"lockReason":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReason"},"embeddingConfig":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfig"},"configuredProviders":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesConfiguredProviders"},"indexedDimension":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimension"},"reindexRequired":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexRequired"},"documentCount":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCount"}},"required":["openaiConfigured","autoIndexingEnabled","autoIndexingLocked","lockReason","embeddingConfig","configuredProviders","indexedDimension","reindexRequired","documentCount"],"additionalProperties":false},"DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"settings":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses200ContentApplicationJsonSchemaPropertiesSettings"}},"required":["settings"],"additionalProperties":false},"DocPathsSearchEmbeddingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoIndexingEnabled":{"type":"boolean"},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesProviderId":{"type":"string","enum":["openai","google","mistral","cohere","bedrock","ollama"]},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesModel":{"type":"string"},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesDimension":{"type":"number"},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesOutputDimensionality":{"type":"number"},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesBaseUrl":{"type":"string"},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfig":{"type":"object","properties":{"providerId":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesProviderId"},"model":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesModel"},"dimension":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesDimension"},"outputDimensionality":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesOutputDimensionality"},"baseUrl":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfigPropertiesBaseUrl"}},"required":["providerId","model","dimension"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"autoIndexingEnabled":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoIndexingEnabled"},"embeddingConfig":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostRequestBodyContentApplicationJsonSchemaPropertiesEmbeddingConfig"}},"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesOpenaiConfigured":{"type":"boolean"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingEnabled":{"type":"boolean"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingLocked":{"type":"boolean"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf1":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReasonAnyOf1"}]},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId":{"type":"string","enum":["openai","google","mistral","cohere","bedrock","ollama"]},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesModel":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesDimension":{"type":"number"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesOutputDimensionality":{"type":"number"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesBaseUrl":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesUpdatedAt":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1":{"type":"object","properties":{"providerId":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId"},"model":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesModel"},"dimension":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesDimension"},"outputDimensionality":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesOutputDimensionality"},"baseUrl":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesBaseUrl"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesUpdatedAt"}},"required":["providerId","model","dimension"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1"}]},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesConfiguredProviders":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfigAnyOf1PropertiesProviderId"}},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimension":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimensionAnyOf1"}]},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexRequired":{"type":"boolean"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf0":{"type":"null"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf1":{"type":"number"},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCountAnyOf1"}]},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"openaiConfigured":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesOpenaiConfigured"},"autoIndexingEnabled":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingEnabled"},"autoIndexingLocked":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesAutoIndexingLocked"},"lockReason":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesLockReason"},"embeddingConfig":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesEmbeddingConfig"},"configuredProviders":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesConfiguredProviders"},"indexedDimension":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesIndexedDimension"},"reindexRequired":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexRequired"},"documentCount":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDocumentCount"}},"required":["openaiConfigured","autoIndexingEnabled","autoIndexingLocked","lockReason","embeddingConfig","configuredProviders","indexedDimension","reindexRequired","documentCount"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"settings":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses200ContentApplicationJsonSchemaPropertiesSettings"}},"required":["settings"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchEmbeddingsPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchEmbeddingsPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchEmbeddingsPostResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexGetParameters0Schema":{"type":"string"},"DocPathsSearchIndexGetParameters1Schema":{"type":"number"},"DocPathsSearchIndexGetParameters2Schema":{"type":"number"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesEntityId":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesRecordId":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesTenantId":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationIdAnyOf1":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesTitle":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesSubtitle":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesRecordId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesOrganizationId"},"title":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesSubtitle"},"createdAt":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesCreatedAt"}},"required":["id","entityId","recordId","tenantId"],"additionalProperties":false},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems"}},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesLimit":{"type":"number"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesOffset":{"type":"number"},"DocPathsSearchIndexGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"entries":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesEntries"},"limit":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesLimit"},"offset":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses200ContentApplicationJsonSchemaPropertiesOffset"}},"required":["entries","limit","offset"],"additionalProperties":false},"DocPathsSearchIndexGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexGetResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexGetResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexGetResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexDeleteParameters0Schema":{"type":"string"},"DocPathsSearchIndexDeleteParameters1Schema":{"type":"string","enum":["true"]},"DocPathsSearchIndexDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchIndexDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSearchIndexDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchIndexDeleteResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchIndexDeleteResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchIndexDeleteResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesJobsRemoved":{"type":"number"},"DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"jobsRemoved":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses200ContentApplicationJsonSchemaPropertiesJobsRemoved"}},"required":["ok","jobsRemoved"],"additionalProperties":false},"DocPathsSearchReindexCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["clear","recreate","reindex"]},"DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string"},"DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesUseQueue":{"type":"boolean"},"DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"action":{"$ref":"#/components/schemas/DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesAction"},"entityId":{"$ref":"#/components/schemas/DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"useQueue":{"$ref":"#/components/schemas/DocPathsSearchReindexPostRequestBodyContentApplicationJsonSchemaPropertiesUseQueue"}},"additionalProperties":false},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["clear","recreate","reindex"]},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityIdAnyOf1":{"type":"string"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityIdAnyOf1"}]},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesUseQueue":{"type":"boolean"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesEntitiesProcessed":{"type":"number"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesRecordsIndexed":{"type":"number"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesJobsEnqueued":{"type":"number"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItemsPropertiesEntityId":{"type":"string"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItemsPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItemsPropertiesEntityId"},"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItemsPropertiesError"}},"required":["entityId","error"],"additionalProperties":false},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrorsItems"}},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResult":{"type":"object","properties":{"entitiesProcessed":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesEntitiesProcessed"},"recordsIndexed":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesRecordsIndexed"},"jobsEnqueued":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesJobsEnqueued"},"errors":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesErrors"}},"additionalProperties":false},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesStatsAdditionalProperties":{"type":"object","additionalProperties":true,"nullable":true},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesStats":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesStatsAdditionalProperties"}},"DocPathsSearchReindexPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"action":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesAction"},"entityId":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesEntityId"},"useQueue":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesUseQueue"},"result":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesResult"},"stats":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses200ContentApplicationJsonSchemaPropertiesStats"}},"required":["ok","action","entityId"],"additionalProperties":false},"DocPathsSearchReindexPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesType":{"type":"string","enum":["fulltext","vector"]},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesAction":{"type":"string"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesStartedAt":{"type":"string"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesElapsedMinutes":{"type":"number"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf1":{"type":"number"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCountAnyOf1"}]},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCountAnyOf1"}]},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLock":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesType"},"action":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesAction"},"startedAt":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesStartedAt"},"elapsedMinutes":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesElapsedMinutes"},"processedCount":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLockPropertiesTotalCount"}},"required":["type","action","startedAt","elapsedMinutes"],"additionalProperties":false},"DocPathsSearchReindexPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesError"},"lock":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses409ContentApplicationJsonSchemaPropertiesLock"}},"required":["error","lock"],"additionalProperties":false},"DocPathsSearchReindexPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchReindexPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchReindexPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchReindexPostResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetParameters0Schema":{"type":"string"},"DocPathsSearchSearchGlobalGetParameters1Schema":{"type":"number"},"DocPathsSearchSearchGlobalGetParameters2Schema":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesEntityId":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesRecordId":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesScore":{"type":"number"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesSource":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesTitle":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesSubtitle":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesIcon":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesBadge":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenter":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesSubtitle"},"icon":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesIcon"},"badge":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesBadge"}},"required":["title"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesUrl":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesHref":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesLabel":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesKind":{"type":"string","enum":["primary","secondary"]},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItems":{"type":"object","properties":{"href":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesLabel"},"kind":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesKind"}},"required":["href","label","kind"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItems"}},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesRecordId"},"score":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesScore"},"source":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesSource"},"presenter":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenter"},"url":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesUrl"},"links":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinks"},"metadata":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesMetadata"}},"required":["entityId","recordId","score","source"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResults":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResultsItems"}},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsedItems":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsed":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsedItems"}},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesEnabled":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsedItems"}},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTiming":{"type":"number"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesQuery":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesLimit":{"type":"number"},"DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"results":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesResults"},"strategiesUsed":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsed"},"strategiesEnabled":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesEnabled"},"timing":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTiming"},"query":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesQuery"},"limit":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses200ContentApplicationJsonSchemaPropertiesLimit"}},"required":["results","strategiesUsed","strategiesEnabled","timing","query","limit"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGlobalGetResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGlobalGetResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGlobalGetResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGetParameters0Schema":{"type":"string"},"DocPathsSearchSearchGetParameters1Schema":{"type":"number"},"DocPathsSearchSearchGetParameters2Schema":{"type":"string"},"DocPathsSearchSearchGetParameters3Schema":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesEntityId":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesRecordId":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesScore":{"type":"number"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesSource":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesTitle":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesSubtitle":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesIcon":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesBadge":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenter":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesSubtitle"},"icon":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesIcon"},"badge":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenterPropertiesBadge"}},"required":["title"],"additionalProperties":false},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesUrl":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesHref":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesLabel":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesKind":{"type":"string","enum":["primary","secondary"]},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItems":{"type":"object","properties":{"href":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesLabel"},"kind":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItemsPropertiesKind"}},"required":["href","label","kind"],"additionalProperties":false},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinksItems"}},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItems":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesRecordId"},"score":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesScore"},"source":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesSource"},"presenter":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesPresenter"},"url":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesUrl"},"links":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesLinks"},"metadata":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItemsPropertiesMetadata"}},"required":["entityId","recordId","score","source"],"additionalProperties":false},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResults":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResultsItems"}},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsedItems":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsed":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsedItems"}},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesTiming":{"type":"number"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesQuery":{"type":"string"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesLimit":{"type":"number"},"DocPathsSearchSearchGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"results":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesResults"},"strategiesUsed":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesStrategiesUsed"},"timing":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesTiming"},"query":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesQuery"},"limit":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses200ContentApplicationJsonSchemaPropertiesLimit"}},"required":["results","strategiesUsed","timing","query","limit"],"additionalProperties":false},"DocPathsSearchSearchGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSearchGetResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSearchGetResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSearchGetResponses503ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriverAnyOf0":{"type":"null"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriverAnyOf1":{"type":"string","enum":["meilisearch"]},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriver":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriverAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriverAnyOf1"}]},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesConfigured":{"type":"boolean"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOSTPropertiesSet":{"type":"boolean"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOSTPropertiesHint":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOST":{"type":"object","properties":{"set":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOSTPropertiesSet"},"hint":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOSTPropertiesHint"}},"required":["set","hint"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVars":{"type":"object","properties":{"MEILISEARCH_HOST":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOST"},"MEILISEARCH_API_KEY":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVarsPropertiesMEILISEARCHHOST"}},"required":["MEILISEARCH_HOST","MEILISEARCH_API_KEY"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesSet":{"type":"boolean"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValueOneOf0":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValueOneOf1":{"type":"boolean"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValue":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValueOneOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValueOneOf1"}]},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefaultOneOf0":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefaultOneOf1":{"type":"boolean"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefault":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefaultOneOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefaultOneOf1"}]},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesHint":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIX":{"type":"object","properties":{"set":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesSet"},"value":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesValue"},"default":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesDefault"},"hint":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIXPropertiesHint"}},"required":["set","hint"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVars":{"type":"object","properties":{"MEILISEARCH_INDEX_PREFIX":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIX"},"SEARCH_EXCLUDE_ENCRYPTED_FIELDS":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVarsPropertiesMEILISEARCHINDEXPREFIX"}},"required":["MEILISEARCH_INDEX_PREFIX","SEARCH_EXCLUDE_ENCRYPTED_FIELDS"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"driver":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesDriver"},"configured":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesConfigured"},"envVars":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesEnvVars"},"optionalEnvVars":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses200ContentApplicationJsonSchemaPropertiesOptionalEnvVars"}},"required":["driver","configured","envVars","optionalEnvVars"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsFulltextGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsFulltextGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsFulltextGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategiesItems":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategiesItems"}},"DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabledStrategies":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategies"}},"required":["enabledStrategies"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchemaPropertiesEnabledStrategiesItems":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchemaPropertiesEnabledStrategies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchemaPropertiesEnabledStrategiesItems"},"minItems":1},"DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"enabledStrategies":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostRequestBodyContentApplicationJsonSchemaPropertiesEnabledStrategies"}},"required":["enabledStrategies"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategiesItems":{"type":"string","enum":["fulltext","vector","tokens"]},"DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategiesItems"}},"DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"enabledStrategies":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses200ContentApplicationJsonSchemaPropertiesEnabledStrategies"}},"required":["ok","enabledStrategies"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGlobalSearchPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGlobalSearchPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGlobalSearchPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesId":{"type":"string"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesName":{"type":"string"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesPriority":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesAvailable":{"type":"boolean"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesName"},"priority":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesPriority"},"available":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItemsPropertiesAvailable"}},"required":["id","name","priority","available"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategiesItems"}},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextConfigured":{"type":"boolean"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesNumberOfDocuments":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesIsIndexing":{"type":"boolean"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesFieldDistributionAdditionalProperties":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesFieldDistribution":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesFieldDistributionAdditionalProperties"}},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1":{"type":"object","properties":{"numberOfDocuments":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesNumberOfDocuments"},"isIndexing":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesIsIndexing"},"fieldDistribution":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1PropertiesFieldDistribution"}},"required":["numberOfDocuments","isIndexing","fieldDistribution"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStats":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStatsAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorConfigured":{"type":"boolean"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesTokensEnabled":{"type":"boolean"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDefaultStrategiesItems":{"type":"string"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDefaultStrategies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDefaultStrategiesItems"}},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesType":{"type":"string","enum":["fulltext","vector"]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesAction":{"type":"string"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesStartedAt":{"type":"string"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesElapsedMinutes":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCountAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCountAnyOf1":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCountAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCountAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesType"},"action":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesAction"},"startedAt":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesStartedAt"},"elapsedMinutes":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesElapsedMinutes"},"processedCount":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1PropertiesTotalCount"}},"required":["type","action","startedAt","elapsedMinutes"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLock":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextReindexLockAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextReindexLock":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextReindexLockAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorReindexLockAnyOf0":{"type":"null"},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorReindexLock":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorReindexLockAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLockAnyOf1"}]},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"strategies":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesStrategies"},"fulltextConfigured":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextConfigured"},"fulltextStats":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextStats"},"vectorConfigured":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorConfigured"},"tokensEnabled":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesTokensEnabled"},"defaultStrategies":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesDefaultStrategies"},"reindexLock":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesReindexLock"},"fulltextReindexLock":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesFulltextReindexLock"},"vectorReindexLock":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettingsPropertiesVectorReindexLock"}},"required":["strategies","fulltextConfigured","fulltextStats","vectorConfigured","tokensEnabled","defaultStrategies","reindexLock","fulltextReindexLock","vectorReindexLock"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"settings":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses200ContentApplicationJsonSchemaPropertiesSettings"}},"required":["settings"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesCurrentDriver":{"type":"string","enum":["pgvector","qdrant","chromadb"]},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesConfigured":{"type":"boolean"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesId":{"type":"string","enum":["pgvector","qdrant","chromadb"]},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesName":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesConfigured":{"type":"boolean"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesImplemented":{"type":"boolean"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailableAnyOf0":{"type":"null"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailableAnyOf1":{"type":"boolean"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailable":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailableAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailableAnyOf1"}]},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReasonAnyOf0":{"type":"null"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReasonAnyOf1":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReasonAnyOf1"}]},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesName":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesSet":{"type":"boolean"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesHint":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItems":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesName"},"set":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesSet"},"hint":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItemsPropertiesHint"}},"required":["name","set","hint"],"additionalProperties":false},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVars":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVarsItems"}},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesName"},"configured":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesConfigured"},"implemented":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesImplemented"},"available":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesAvailable"},"unavailableReason":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesUnavailableReason"},"envVars":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVars"}},"required":["id","name","configured","implemented","available","unavailableReason","envVars"],"additionalProperties":false},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDrivers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItems"}},"DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"currentDriver":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesCurrentDriver"},"configured":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesConfigured"},"drivers":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDrivers"}},"required":["currentDriver","configured","drivers"],"additionalProperties":false},"DocPathsSearchSettingsVectorStoreGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSearchSettingsVectorStoreGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSearchSettingsVectorStoreGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetParameters0Schema":{"type":"number"},"DocPathsAttachmentsLibraryGetParameters1Schema":{"type":"number"},"DocPathsAttachmentsLibraryGetParameters2Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters3Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters4Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters5Schema":{"type":"string","enum":["fileName","fileSize","createdAt"]},"DocPathsAttachmentsLibraryGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments":{"type":"array","items":{}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0"},{}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode"},"partitionTitle":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitle"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent"}},"required":["id","fileName","fileSize","mimeType","partitionCode","partitionTitle","createdAt","tags","assignments"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTagsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesCode":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesTitle":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesIsPublic"}},"required":["code","title","description","isPublic"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"availableTags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTags"},"partitions":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitions"}},"required":["items","total","page","pageSize","totalPages","availableTags","partitions"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":2,"maxLength":60,"pattern":"^[A-Za-z0-9_-]+$"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":120},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1":{"type":"string","maxLength":50},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0":{"type":"string","enum":["local","s3"]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver":{"allOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0"}],"default":"local"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson"}},"required":["code","title"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":2,"maxLength":60,"pattern":"^[A-Za-z0-9_-]+$"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":120},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1":{"type":"string","maxLength":50},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0":{"type":"string","enum":["local","s3"]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver":{"allOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0"}],"default":"local"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJson"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["code","title","id"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsGetParameters0Schema":{"type":"string","minLength":1},"DocPathsAttachmentsGetParameters1Schema":{"type":"string","minLength":1},"DocPathsAttachmentsGetParameters2Schema":{"type":"number"},"DocPathsAttachmentsGetParameters3Schema":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesType":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments"}},"required":["id","url","fileName","fileSize","createdAt"],"additionalProperties":false},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items"],"additionalProperties":false},"DocPathsAttachmentsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFieldKey":{"type":"string"},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFile":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesCustomFields":{"type":"string"},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesRecordId"},"fieldKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFieldKey"},"file":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFile"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesCustomFields"}},"required":["entityId","recordId","file"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUrl":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems"}},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesType":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItems"}},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUrl"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesThumbnailUrl"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields"}},"required":["id","url","fileName","fileSize"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsAttachmentsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"},"minItems":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesFromRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesToRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"fromRecordId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesFromRecordId"},"toRecordId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesToRecordId"}},"required":["entityId","attachmentIds","toRecordId"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"updated":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesUpdated"}},"required":["ok","updated"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetParameters1Schema":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesMimeType":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf1"}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems"}},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments":{"type":"array","items":{}},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0"},{}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFieldsAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFieldsAnyOf0"},{}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesMimeType"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionCode"},"partitionTitle":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitle"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields"}},"required":["id","fileName","fileSize","mimeType","partitionCode","partitionTitle","tags","assignments"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesType":{"type":"string","minLength":1},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItems"}},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignments"}},"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesItem":{},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdDeleteParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsCatalogBulkDeletePostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCatalogBulkDeletePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogBulkDeletePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogBulkDeletePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogBulkDeletePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogBulkDeletePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogBulkDeletePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesGetParameters0Schema":{"type":"string","enum":["manage","tree"]},"DocPathsCatalogCategoriesGetParameters1Schema":{"type":"number"},"DocPathsCatalogCategoriesGetParameters2Schema":{"type":"number"},"DocPathsCatalogCategoriesGetParameters3Schema":{"type":"string"},"DocPathsCatalogCategoriesGetParameters4Schema":{"type":"string","enum":["all","active","inactive"]},"DocPathsCatalogCategoriesGetParameters5Schema":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf1":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf1":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentNameAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPathLabel":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildCount":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantCount":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"slug":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug"},"description":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"parentId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId"},"parentName":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentName"},"depth":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth"},"treePath":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath"},"pathLabel":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPathLabel"},"childCount":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildCount"},"descendantCount":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantCount"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"}},"required":["id","name","depth","treePath","pathLabel","childCount","descendantCount","isActive","organizationId","tenantId"],"additionalProperties":false},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogCategoriesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1"}]},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"slug":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"description":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"parentId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["organizationId","tenantId","name"],"additionalProperties":false},"DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogCategoriesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlugAnyOf1"}]},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"slug":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"description":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"parentId":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogCategoriesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogCategoriesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogCategoriesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogCategoriesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogCategoriesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogCategoriesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogCategoriesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogCategoriesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogCategoriesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogCategoriesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersGetParameters0Schema":{"type":"number"},"DocPathsCatalogOffersGetParameters1Schema":{"type":"number"},"DocPathsCatalogOffersGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetParameters4Schema":{"type":"string"},"DocPathsCatalogOffersGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetParameters6Schema":{"type":"string"},"DocPathsCatalogOffersGetParameters7Schema":{"type":"string"},"DocPathsCatalogOffersGetParameters8Schema":{"type":"boolean"},"DocPathsCatalogOffersGetParameters9Schema":{"type":"string"},"DocPathsCatalogOffersGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogOffersGetParameters11Schema":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProduct":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricesItems":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricesItems"}},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPriceAnyOf0":{"type":"null"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPriceAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPrice":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPriceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPriceAnyOf1"}]},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDefaultPricesItems":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDefaultPrices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDefaultPricesItems"}},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"channelId":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"product":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProduct"},"prices":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrices"},"productChannelPrice":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductChannelPrice"},"productDefaultPrices":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDefaultPrices"}},"required":["id","title"],"additionalProperties":false},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogOffersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"channelId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"}},"required":["organizationId","tenantId","channelId","title","productId"],"additionalProperties":false},"DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOffersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"channelId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOffersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogOffersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogOffersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOffersDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOffersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogOffersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogOffersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOffersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOffersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOffersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasGetParameters0Schema":{"type":"number"},"DocPathsCatalogOptionSchemasGetParameters1Schema":{"type":"number"},"DocPathsCatalogOptionSchemasGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasGetParameters3Schema":{"type":"string"},"DocPathsCatalogOptionSchemasGetParameters4Schema":{"type":"string"},"DocPathsCatalogOptionSchemasGetParameters5Schema":{"type":"boolean"},"DocPathsCatalogOptionSchemasGetParameters6Schema":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchema":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchema"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"is_active":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name"],"additionalProperties":false},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogOptionSchemasGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesVersion":{"type":"number"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesInputType":{"type":"string","enum":["select","text","textarea","number"]},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsRequired":{"type":"boolean"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsMultiple":{"type":"boolean"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel"}},"required":["code"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItems"},"maxItems":200},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesDescription"},"inputType":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesInputType"},"isRequired":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsRequired"},"isMultiple":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsMultiple"},"choices":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoices"}},"required":["code","label","inputType"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItems"},"maxItems":64},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesVersion"},"name":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesDescription"},"options":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptions"}},"required":["options"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesSchema"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["organizationId","tenantId","name","schema"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesVersion":{"type":"number"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesInputType":{"type":"string","enum":["select","text","textarea","number"]},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsRequired":{"type":"boolean"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsMultiple":{"type":"boolean"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel"}},"required":["code"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoicesItems"},"maxItems":200},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesDescription"},"inputType":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesInputType"},"isRequired":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsRequired"},"isMultiple":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesIsMultiple"},"choices":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItemsPropertiesChoices"}},"required":["code","label","inputType"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptionsItems"},"maxItems":64},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesVersion"},"name":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesDescription"},"options":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchemaPropertiesOptions"}},"required":["options"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"schema":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesSchema"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogOptionSchemasPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogOptionSchemasDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogOptionSchemasDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogOptionSchemasDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogOptionSchemasDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogOptionSchemasDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogOptionSchemasDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogOptionSchemasDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsGetParameters0Schema":{"type":"number"},"DocPathsCatalogPriceKindsGetParameters1Schema":{"type":"number"},"DocPathsCatalogPriceKindsGetParameters2Schema":{"type":"string"},"DocPathsCatalogPriceKindsGetParameters3Schema":{"type":"string"},"DocPathsCatalogPriceKindsGetParameters4Schema":{"type":"string"},"DocPathsCatalogPriceKindsGetParameters5Schema":{"type":"string"},"DocPathsCatalogPriceKindsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogPriceKindsGetParameters7Schema":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayModeAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayModeAnyOf1":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayMode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayModeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayModeAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotionAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotionAnyOf1":{"type":"boolean"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotionAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"code":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"display_mode":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayMode"},"currency_code":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"is_promotion":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPromotion"},"is_active":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","title"],"additionalProperties":false},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogPriceKindsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayModeAllOf0":{"type":"string","enum":["including-tax","excluding-tax"]},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayModeAllOf0"}],"default":"excluding-tax"},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPromotion":{"type":"boolean"},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"code":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"displayMode":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayMode"},"currencyCode":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isPromotion":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPromotion"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["tenantId","code","title"],"additionalProperties":false},"DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPriceKindsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayModeAllOf0":{"type":"string","enum":["including-tax","excluding-tax"]},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayModeAllOf0"}],"default":"excluding-tax"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPromotion":{"type":"boolean"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"code":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"displayMode":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayMode"},"currencyCode":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isPromotion":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPromotion"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPriceKindsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogPriceKindsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogPriceKindsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPriceKindsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPriceKindsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogPriceKindsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogPriceKindsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPriceKindsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPriceKindsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPriceKindsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesGetParameters0Schema":{"type":"number"},"DocPathsCatalogPricesGetParameters1Schema":{"type":"number"},"DocPathsCatalogPricesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters6Schema":{"type":"string"},"DocPathsCatalogPricesGetParameters7Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters8Schema":{"type":"string"},"DocPathsCatalogPricesGetParameters9Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters10Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters11Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters12Schema":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetParameters13Schema":{"type":"number"},"DocPathsCatalogPricesGetParameters14Schema":{"type":"string","maxLength":50},"DocPathsCatalogPricesGetParameters15Schema":{"type":"boolean"},"DocPathsCatalogPricesGetParameters16Schema":{"type":"string"},"DocPathsCatalogPricesGetParameters17Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogPricesGetParameters18Schema":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantityAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantityAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantityAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantityAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantityAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantityAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNetAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNetAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNetAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNetAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGrossAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGrossAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGrossAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGrossAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRateAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRateAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRateAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmountAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmountAnyOf1":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmountAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"product_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"variant_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantId"},"offer_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferId"},"currency_code":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"price_kind_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKindId"},"kind":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"min_quantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity"},"max_quantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxQuantity"},"unit_price_net":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet"},"unit_price_gross":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross"},"tax_rate":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate"},"tax_amount":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount"},"channel_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"user_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"user_group_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserGroupId"},"customer_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"customer_group_id":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupId"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"starts_at":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt"},"ends_at":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogPricesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesVariantId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesOfferId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceKindId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMinQuantity":{"type":"number"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxQuantity":{"type":"number"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUserGroupId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesStartsAt":{"type":"string","format":"date-time"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesEndsAt":{"type":"string","format":"date-time"},"DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"variantId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesVariantId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"offerId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesOfferId"},"currencyCode":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"priceKindId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceKindId"},"minQuantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMinQuantity"},"maxQuantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxQuantity"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"channelId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"userId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId"},"userGroupId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesUserGroupId"},"customerId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"customerGroupId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"startsAt":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostRequestBodyContentApplicationJsonSchemaPropertiesEndsAt"}},"required":["organizationId","tenantId","currencyCode","priceKindId"],"additionalProperties":false},"DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPricesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesVariantId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesOfferId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceKindId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMinQuantity":{"type":"number"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxQuantity":{"type":"number"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUserGroupId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesStartsAt":{"type":"string","format":"date-time"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesEndsAt":{"type":"string","format":"date-time"},"DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"variantId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesVariantId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"offerId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesOfferId"},"currencyCode":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"priceKindId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceKindId"},"minQuantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMinQuantity"},"maxQuantity":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxQuantity"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"channelId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"userId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"},"userGroupId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesUserGroupId"},"customerId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"customerGroupId":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"startsAt":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutRequestBodyContentApplicationJsonSchemaPropertiesEndsAt"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogPricesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogPricesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogPricesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogPricesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogPricesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogPricesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogPricesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogPricesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogPricesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductMediaGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName":{"type":"string"},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl":{"type":"string"},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl":{"type":"string"},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName"},"url":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl"}},"required":["id","fileName","url","thumbnailUrl"],"additionalProperties":false},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCatalogProductMediaGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductMediaGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductMediaGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductMediaGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductMediaGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsGetParameters0Schema":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetParameters1Schema":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsGetParameters4Schema":{"type":"string","maxLength":50},"DocPathsCatalogProductUnitConversionsGetParameters5Schema":{"type":"boolean"},"DocPathsCatalogProductUnitConversionsGetParameters6Schema":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogProductUnitConversionsGetParameters8Schema":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCode":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToBaseFactor":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrderAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrderAnyOf1":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrderAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrderAnyOf1"}]},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"product_id":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"unit_code":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCode"},"to_base_factor":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToBaseFactor"},"sort_order":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder"},"is_active":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","product_id","unit_code","to_base_factor"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCode":{"type":"string","minLength":1,"maxLength":50},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesToBaseFactor":{"type":"number"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"type":"number"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"unitCode":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCode"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesToBaseFactor"},"sortOrder":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","productId","unitCode","toBaseFactor"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitCode":{"type":"string","minLength":1,"maxLength":50},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesToBaseFactor":{"type":"number"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"type":"number"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"unitCode":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitCode"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesToBaseFactor"},"sortOrder":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogProductUnitConversionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"id":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","id"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogProductUnitConversionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductUnitConversionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductUnitConversionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductUnitConversionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsGetParameters0Schema":{"type":"number"},"DocPathsCatalogProductsGetParameters1Schema":{"type":"number"},"DocPathsCatalogProductsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters3Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters4Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters5Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters6Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters7Schema":{"type":"string","enum":["simple","configurable","virtual","downloadable","bundle","grouped"]},"DocPathsCatalogProductsGetParameters8Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters9Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters10Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters11Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters12Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters13Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters14Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters15Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters16Schema":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetParameters17Schema":{"type":"number"},"DocPathsCatalogProductsGetParameters18Schema":{"type":"string","maxLength":50},"DocPathsCatalogProductsGetParameters19Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters20Schema":{"type":"string"},"DocPathsCatalogProductsGetParameters21Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogProductsGetParameters22Schema":{"type":"boolean"},"DocPathsCatalogProductsGetParameters23Schema":{"type":"string","pattern":"^[a-z0-9_\\-]+$"},"DocPathsCatalogProductsGetParameters24Schema":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandleAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandleAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandleAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTypeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTypeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTypeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnitAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnitAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantityAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantityAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantityAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScaleAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScaleAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScale":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScaleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScaleAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingModeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingModeAnyOf1":{"type":"string","enum":["half_up","down","up"]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingMode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingModeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingModeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabledAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabledAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabled":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabledAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabledAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnitAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantityAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantityAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantityAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesEnabled":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnitAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantityAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantityAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesEnabled"},"reference_unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesReferenceUnit"},"base_quantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPricePropertiesBaseQuantity"}},"required":["enabled","reference_unit","base_quantity"],"additionalProperties":false},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensions":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurableAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurableAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurable":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurableAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurableAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf1Items":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf1Items"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodesAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMinAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMinAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMin":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMinAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMinAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGoodAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGoodAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGood":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGoodAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGoodAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategoryAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategoryAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategoryAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescriptionAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescriptionAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescriptionAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClassAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClassAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClass":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClassAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClassAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumberAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumberAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumberAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroupAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroupAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroup":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroupAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroupAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBatteryAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBatteryAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBattery":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBatteryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBatteryAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAtAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAtAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAtAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAtAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFromAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFromAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFromAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntilAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntilAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntilAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQtyAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQtyAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrementAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrementAnyOf1":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrement":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrementAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrementAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShippingAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShippingAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShipping":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShippingAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShippingAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnlyAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnlyAnyOf1":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnly":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnlyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnlyAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitleAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitleAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitleAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescriptionAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescriptionAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrlAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrlAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaIdAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOffersItems":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOffers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOffersItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdsItems":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdsItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoriesItems":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategories":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoriesItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdsItems":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdsItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricingAnyOf0":{"type":"null"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricingAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricing":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricingAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricingAnyOf1"}]},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"handle":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHandle"},"product_type":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductType"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"primary_currency_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryCurrencyCode"},"default_unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUnit"},"default_sales_unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnit"},"default_sales_unit_quantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultSalesUnitQuantity"},"uom_rounding_scale":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingScale"},"uom_rounding_mode":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomRoundingMode"},"unit_price_enabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceEnabled"},"unit_price_reference_unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceReferenceUnit"},"unit_price_base_quantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceBaseQuantity"},"unit_price":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"default_media_id":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId"},"default_media_url":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl"},"weight_value":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue"},"weight_unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensions"},"is_configurable":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsConfigurable"},"is_active":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"country_of_origin_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCode"},"pkwiu_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPkwiuCode"},"cn_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCnCode"},"hs_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode"},"tax_classification_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxClassificationCode"},"gtu_codes":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtuCodes"},"age_min":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAgeMin"},"is_excise_good":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsExciseGood"},"excise_category":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExciseCategory"},"requires_prescription":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresPrescription"},"hazmat_class":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatClass"},"un_number":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnNumber"},"hazmat_packing_group":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHazmatPackingGroup"},"contains_lithium_battery":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBattery"},"launch_at":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLaunchAt"},"end_of_life_at":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndOfLifeAt"},"available_from":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableFrom"},"available_until":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAvailableUntil"},"min_order_qty":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinOrderQty"},"max_order_qty":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxOrderQty"},"order_qty_increment":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderQtyIncrement"},"requires_shipping":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresShipping"},"is_quote_only":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsQuoteOnly"},"seo_title":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoTitle"},"seo_description":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeoDescription"},"canonical_url":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCanonicalUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"custom_fieldset_code":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCode"},"option_schema_id":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionSchemaId"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"offers":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOffers"},"channelIds":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIds"},"categories":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategories"},"categoryIds":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIds"},"tags":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"pricing":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPricing"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogProductsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSubtitle":{"type":"string","maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf1":{"type":"string","pattern":"^[A-Za-z0-9\\-_\\.]+$","maxLength":191},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHandle":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductTypeAllOf0":{"type":"string","enum":["simple","configurable","virtual","downloadable","bundle","grouped"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductType":{"allOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductTypeAllOf0"}],"default":"simple"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf1":{"type":"string","maxLength":50},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf1":{"type":"string","maxLength":50},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitQuantity":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingScale":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceEnabled":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceBaseQuantity":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesEnabled":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesBaseQuantity":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesEnabled"},"referenceUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnit"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesBaseQuantity"}},"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesWidth":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesHeight":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesDepth":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesUnit":{"type":"string","maxLength":25},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1":{"type":"object","properties":{"width":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesWidth"},"height":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesHeight"},"depth":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesDepth"},"unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesUnit"}},"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesVersion":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesInputType":{"type":"string","enum":["select","text","textarea","number"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsRequired":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsMultiple":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel"}},"required":["code"],"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItems"},"maxItems":200},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesDescription"},"inputType":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesInputType"},"isRequired":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsRequired"},"isMultiple":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsMultiple"},"choices":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoices"}},"required":["code","label","inputType"],"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItems"},"maxItems":64},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesVersion"},"name":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesDescription"},"options":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptions"}},"required":["options"],"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsConfigurable":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf1":{"type":"string","pattern":"^[A-Z]{2}$"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesGtuCodesAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesGtuCodes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesGtuCodesAnyOf0"},{}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMin":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsExciseGood":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf1":{"type":"string","enum":["alcohol","tobacco","energy_drink","fuel","other"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresPrescription":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClass":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnNumberAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnNumberAnyOf0"},{}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf1":{"type":"string","enum":["I","II","III"]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroup":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf1":{"type":"number"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrement":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresShipping":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsQuoteOnly":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf1":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf1":{"type":"string","minLength":1,"maxLength":1000},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf1":{"type":"string","maxLength":500,"pattern":"^https?:\\/\\/\\S+$"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItems":{"type":"object","properties":{"channelId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesChannelId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDescription"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesIsActive"}},"required":["channelId","title"],"additionalProperties":false},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffersItems"}},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdsItems":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdsItems"},"maxItems":100},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","minLength":1,"maxLength":100},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"},"maxItems":100},"DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSubtitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSku"},"handle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHandle"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"productType":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductType"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"primaryCurrencyCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryCurrencyCode"},"defaultUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnit"},"defaultSalesUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnit"},"defaultSalesUnitQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitQuantity"},"uomRoundingScale":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingScale"},"uomRoundingMode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingMode"},"unitPriceEnabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceEnabled"},"unitPriceReferenceUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnit"},"unitPriceBaseQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceBaseQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"weightValue":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"optionSchemaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaId"},"optionSchema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionSchema"},"customFieldsetCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode"},"isConfigurable":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsConfigurable"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"countryOfOriginCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode"},"pkwiuCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCode"},"cnCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCode"},"hsCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"taxClassificationCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCode"},"gtuCodes":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesGtuCodes"},"ageMin":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAgeMin"},"isExciseGood":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsExciseGood"},"exciseCategory":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesExciseCategory"},"requiresPrescription":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresPrescription"},"hazmatClass":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatClass"},"unNumber":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnNumber"},"hazmatPackingGroup":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroup"},"containsLithiumBattery":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery"},"launchAt":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesLaunchAt"},"endOfLifeAt":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAt"},"availableFrom":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableFrom"},"availableUntil":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntil"},"minOrderQty":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQty"},"maxOrderQty":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQty"},"orderQtyIncrement":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrement"},"requiresShipping":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresShipping"},"isQuoteOnly":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesIsQuoteOnly"},"seoTitle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoTitle"},"seoDescription":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSeoDescription"},"canonicalUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"offers":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOffers"},"categoryIds":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIds"},"tags":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostRequestBodyContentApplicationJsonSchemaPropertiesTags"}},"required":["organizationId","tenantId","title"],"additionalProperties":false},"DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSubtitle":{"type":"string","maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf1":{"type":"string","pattern":"^[A-Za-z0-9\\-_\\.]+$","maxLength":191},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSkuAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHandle":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesProductType":{"type":"string","enum":["simple","configurable","virtual","downloadable","bundle","grouped"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf1":{"type":"string","maxLength":50},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnitAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf1":{"type":"string","maxLength":50},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitQuantity":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingScale":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceEnabled":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceBaseQuantity":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesEnabled":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnitAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesBaseQuantity":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesEnabled"},"referenceUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesReferenceUnit"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPricePropertiesBaseQuantity"}},"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValueAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnitAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesWidth":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesHeight":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesDepth":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesUnit":{"type":"string","maxLength":25},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1":{"type":"object","properties":{"width":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesWidth"},"height":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesHeight"},"depth":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesDepth"},"unit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1PropertiesUnit"}},"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaIdAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesVersion":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesInputType":{"type":"string","enum":["select","text","textarea","number"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsRequired":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsMultiple":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItemsPropertiesLabel"}},"required":["code"],"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoices":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoicesItems"},"maxItems":200},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesDescription"},"inputType":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesInputType"},"isRequired":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsRequired"},"isMultiple":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesIsMultiple"},"choices":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesChoices"}},"required":["code","label","inputType"],"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItems"},"maxItems":64},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchema":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesVersion"},"name":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesDescription"},"options":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptions"}},"required":["options"],"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaPropertiesOptionsItemsPropertiesCode"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsConfigurable":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf1":{"type":"string","pattern":"^[A-Z]{2}$"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCodeAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCodeAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesGtuCodesAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesGtuCodes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesGtuCodesAnyOf0"},{}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMin":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMinAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsExciseGood":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf1":{"type":"string","enum":["alcohol","tobacco","energy_drink","fuel","other"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategoryAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresPrescription":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClass":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClassAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnNumberAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnNumberAnyOf0"},{}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf1":{"type":"string","enum":["I","II","III"]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroup":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroupAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAtAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAtAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFromAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf1":{"type":"string","format":"date-time"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntilAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQtyAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQty":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQtyAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf1":{"type":"number"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrement":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrementAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresShipping":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsQuoteOnly":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf1":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitleAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf1":{"type":"string","minLength":1,"maxLength":1000},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescriptionAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf1":{"type":"string","maxLength":500,"pattern":"^https?:\\/\\/\\S+$"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrlAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesTitle":{"type":"string","minLength":1,"maxLength":255},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItems":{"type":"object","properties":{"channelId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesChannelId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDescription"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesDefaultMediaUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItemsPropertiesIsActive"}},"required":["channelId","title"],"additionalProperties":false},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffersItems"}},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdsItems":{"type":"string","format":"uuid"},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdsItems"},"maxItems":100},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","minLength":1,"maxLength":100},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"},"maxItems":100},"DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"title":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSubtitle"},"description":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSku"},"handle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHandle"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"productType":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesProductType"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"primaryCurrencyCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryCurrencyCode"},"defaultUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUnit"},"defaultSalesUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnit"},"defaultSalesUnitQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultSalesUnitQuantity"},"uomRoundingScale":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingScale"},"uomRoundingMode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUomRoundingMode"},"unitPriceEnabled":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceEnabled"},"unitPriceReferenceUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceReferenceUnit"},"unitPriceBaseQuantity":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceBaseQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"weightValue":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"optionSchemaId":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchemaId"},"optionSchema":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionSchema"},"customFieldsetCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode"},"isConfigurable":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsConfigurable"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"countryOfOriginCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode"},"pkwiuCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesPkwiuCode"},"cnCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCode"},"hsCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"taxClassificationCode":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxClassificationCode"},"gtuCodes":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesGtuCodes"},"ageMin":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAgeMin"},"isExciseGood":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsExciseGood"},"exciseCategory":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesExciseCategory"},"requiresPrescription":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresPrescription"},"hazmatClass":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatClass"},"unNumber":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnNumber"},"hazmatPackingGroup":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHazmatPackingGroup"},"containsLithiumBattery":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery"},"launchAt":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesLaunchAt"},"endOfLifeAt":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesEndOfLifeAt"},"availableFrom":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableFrom"},"availableUntil":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesAvailableUntil"},"minOrderQty":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMinOrderQty"},"maxOrderQty":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMaxOrderQty"},"orderQtyIncrement":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderQtyIncrement"},"requiresShipping":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresShipping"},"isQuoteOnly":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesIsQuoteOnly"},"seoTitle":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoTitle"},"seoDescription":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSeoDescription"},"canonicalUrl":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCanonicalUrl"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"offers":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOffers"},"categoryIds":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIds"},"tags":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutRequestBodyContentApplicationJsonSchemaPropertiesTags"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogProductsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogProductsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogProductsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogProductsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogProductsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogSettingsGetResponses200ContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled":{"type":"boolean"},"DocPathsCatalogSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"unitPriceDisplayEnabled":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses200ContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled"}},"required":["unitPriceDisplayEnabled"],"additionalProperties":false},"DocPathsCatalogSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled":{"type":"boolean"},"DocPathsCatalogSettingsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"unitPriceDisplayEnabled":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled"}},"required":["unitPriceDisplayEnabled"],"additionalProperties":false},"DocPathsCatalogSettingsPutResponses200ContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled":{"type":"boolean"},"DocPathsCatalogSettingsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"unitPriceDisplayEnabled":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses200ContentApplicationJsonSchemaPropertiesUnitPriceDisplayEnabled"}},"required":["unitPriceDisplayEnabled"],"additionalProperties":false},"DocPathsCatalogSettingsPutResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCatalogSettingsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogSettingsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogSettingsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogSettingsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogSettingsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogTagsGetParameters0Schema":{"type":"string"},"DocPathsCatalogTagsGetParameters1Schema":{"type":"number"},"DocPathsCatalogTagsGetParameters2Schema":{"type":"number"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf0":{"type":"null"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf1":{"type":"string"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlugAnyOf1"}]},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"slug":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug"},"createdAt":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","label","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogTagsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogTagsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogTagsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogTagsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogTagsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsGetParameters0Schema":{"type":"number"},"DocPathsCatalogVariantsGetParameters1Schema":{"type":"number"},"DocPathsCatalogVariantsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetParameters3Schema":{"type":"string"},"DocPathsCatalogVariantsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetParameters5Schema":{"type":"string"},"DocPathsCatalogVariantsGetParameters6Schema":{"type":"string"},"DocPathsCatalogVariantsGetParameters7Schema":{"type":"string"},"DocPathsCatalogVariantsGetParameters8Schema":{"type":"boolean"},"DocPathsCatalogVariantsGetParameters9Schema":{"type":"string"},"DocPathsCatalogVariantsGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCatalogVariantsGetParameters11Schema":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcodeAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcodeAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinTypeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinTypeAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinTypeAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefaultAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefaultAnyOf1":{"type":"boolean"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefaultAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefaultAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1":{"type":"number"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensions":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensionsAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValuesAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValuesAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCodeAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"product_id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"barcode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBarcode"},"gtin_type":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGtinType"},"hs_code":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"is_default":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault"},"is_active":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"weight_value":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue"},"weight_unit":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDimensions"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"option_values":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOptionValues"},"custom_fieldset_code":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsetCode"},"default_media_id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaId"},"default_media_url":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultMediaUrl"},"created_at":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCatalogVariantsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","pattern":"^[A-Za-z0-9\\-_\\.]+$","maxLength":191},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcode":{"type":"string","maxLength":191},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf1":{"type":"string","enum":["ean13","ean8","upc","isbn","asin","mpn"]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"type":"number"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"type":"string","maxLength":25},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1":{"type":"number"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesWidth":{"type":"number"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesHeight":{"type":"number"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesDepth":{"type":"number"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesUnit":{"type":"string","maxLength":25},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{"type":"object","properties":{"width":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesWidth"},"height":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesHeight"},"depth":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesDepth"},"unit":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesUnit"}},"additionalProperties":false},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionValuesAdditionalProperties":{"type":"string","maxLength":255},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionValuesAdditionalProperties"}},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf1"}]},"DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesSku"},"barcode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcode"},"gtinType":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesGtinType"},"hsCode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"isDefault":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"weightValue":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"optionValues":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesOptionValues"},"customFieldsetCode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode"}},"required":["organizationId","tenantId","productId"],"additionalProperties":false},"DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogVariantsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","pattern":"^[A-Za-z0-9\\-_\\.]+$","maxLength":191},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcode":{"type":"string","maxLength":191},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf1":{"type":"string","enum":["ean13","ean8","upc","isbn","asin","mpn"]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinTypeAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","minLength":1,"maxLength":32},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaIdAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1":{"type":"string","maxLength":500},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrlAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"type":"number"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"type":"string","maxLength":25},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateIdAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1":{"type":"number"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesWidth":{"type":"number"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesHeight":{"type":"number"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesDepth":{"type":"number"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesUnit":{"type":"string","maxLength":25},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{"type":"object","properties":{"width":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesWidth"},"height":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesHeight"},"depth":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesDepth"},"unit":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensionsPropertiesUnit"}},"additionalProperties":false},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionValuesAdditionalProperties":{"type":"string","maxLength":255},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionValues":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionValuesAdditionalProperties"}},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0":{"type":"null"},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf1":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":150},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCodeAnyOf1"}]},"DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"productId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"name":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesSku"},"barcode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcode"},"gtinType":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesGtinType"},"hsCode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"isDefault":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"},"isActive":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"defaultMediaId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaId"},"defaultMediaUrl":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultMediaUrl"},"weightValue":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"taxRateId":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"taxRate":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"dimensions":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"metadata":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"optionValues":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesOptionValues"},"customFieldsetCode":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldsetCode"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogVariantsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogVariantsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogVariantsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogVariantsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCatalogVariantsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCatalogVariantsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCatalogVariantsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogVariantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogVariantsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogVariantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogDictionariesKeyGetParameters0Schema":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColorAnyOf1"}]},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIconAnyOf1"}]},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesIcon"}},"required":["id","value","label","color","icon"],"additionalProperties":false},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems"}},"DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesId"},"entries":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses200ContentApplicationJsonSchemaPropertiesEntries"}},"required":["id","entries"],"additionalProperties":false},"DocPathsCatalogDictionariesKeyGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCatalogDictionariesKeyGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCatalogDictionariesKeyGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCatalogDictionariesKeyGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesGetParameters0Schema":{"type":"number"},"DocPathsCustomersActivitiesGetParameters1Schema":{"type":"number"},"DocPathsCustomersActivitiesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetParameters4Schema":{"type":"string"},"DocPathsCustomersActivitiesGetParameters5Schema":{"type":"string"},"DocPathsCustomersActivitiesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersActivitiesGetParameters7Schema":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityType":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubjectAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubjectAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubject":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubjectAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubjectAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabelAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabelAnyOf1":{"type":"string"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabelAnyOf1"}]},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"activityType":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityType"},"subject":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmail"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId"},"dealTitle":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitle"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"},"activityTypeLabel":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActivityTypeLabel"}},"required":["id","activityType","createdAt"],"additionalProperties":true},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersActivitiesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesActivityType":{"type":"string","minLength":1,"maxLength":100},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesSubject":{"type":"string","maxLength":200},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","maxLength":8000},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDate":{"type":"string","minLength":1},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesTime":{"type":"string","minLength":1},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf1"}]},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt":{"type":"string","format":"date-time"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDealId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"activityType":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesActivityType"},"subject":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"date":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDate"},"time":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesTime"},"phoneNumber":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumber"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesDealId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["entityId","activityType"],"additionalProperties":true},"DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersActivitiesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesActivityType":{"type":"string","minLength":1,"maxLength":100},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesSubject":{"type":"string","maxLength":200},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","maxLength":8000},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesDate":{"type":"string","minLength":1},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesTime":{"type":"string","minLength":1},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumberAnyOf1"}]},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt":{"type":"string","format":"date-time"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesDealId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"activityType":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesActivityType"},"subject":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesBody"},"date":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesDate"},"time":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesTime"},"phoneNumber":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneNumber"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesDealId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["id"],"additionalProperties":true},"DocPathsCustomersActivitiesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersActivitiesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersActivitiesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersActivitiesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersActivitiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersActivitiesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersActivitiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersActivitiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersActivitiesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersActivitiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesGetParameters0Schema":{"type":"number"},"DocPathsCustomersAddressesGetParameters1Schema":{"type":"number"},"DocPathsCustomersAddressesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetParameters4Schema":{"type":"string"},"DocPathsCustomersAddressesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersAddressesGetParameters6Schema":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf1":{"type":"boolean"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"entity_id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose"},"company_name":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyName"},"address_line1":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1"},"address_line2":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2"},"building_number":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumber"},"flat_number":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegion"},"postal_code":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitude"},"is_primary":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"updated_at":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","entity_id"],"additionalProperties":false},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersAddressesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyName":{"type":"string","maxLength":200},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","minLength":1,"maxLength":300},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":300},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber":{"type":"string","maxLength":50},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber":{"type":"string","maxLength":50},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1"}]},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1"}]},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"companyName":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"}},"required":["organizationId","tenantId","entityId","addressLine1"],"additionalProperties":false},"DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersAddressesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyName":{"type":"string","maxLength":200},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","minLength":1,"maxLength":300},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":300},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber":{"type":"string","maxLength":50},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber":{"type":"string","maxLength":50},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":150},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1"}]},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1"}]},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"companyName":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersAddressesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersAddressesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersAddressesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAddressesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersAddressesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersAddressesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersAddressesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAddressesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAddressesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAddressesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetParameters0Schema":{"type":"number"},"DocPathsCustomersAssignableStaffGetParameters1Schema":{"type":"number"},"DocPathsCustomersAssignableStaffGetParameters2Schema":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamMemberId":{"type":"string","format":"uuid"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamNameAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamNameAnyOf1":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamNameAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmailAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmailAnyOf1":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmailAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesId"},"email":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1PropertiesEmail"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUser":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesNameAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1PropertiesName"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeam":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamAnyOf1"}]},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"teamMemberId":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamMemberId"},"userId":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail"},"teamName":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeamName"},"user":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUser"},"team":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTeam"}},"required":["id","teamMemberId","userId","displayName"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses308ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses308ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses308ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersAssignableStaffGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersAssignableStaffGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersAssignableStaffGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsGetParameters0Schema":{"type":"number"},"DocPathsCustomersCommentsGetParameters1Schema":{"type":"number"},"DocPathsCustomersCommentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetParameters4Schema":{"type":"string"},"DocPathsCustomersCommentsGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersCommentsGetParameters6Schema":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"entity_id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"deal_id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody"},"author_user_id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId"},"appearance_icon":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon"},"appearance_color":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"created_at":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","entity_id","deal_id","body","author_user_id","created_at"],"additionalProperties":true},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersCommentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesDealId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","minLength":1,"maxLength":8000},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesDealId"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["organizationId","tenantId","entityId","body"],"additionalProperties":false},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserId"}},"required":["id","authorUserId"],"additionalProperties":false},"DocPathsCustomersCommentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesDealId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","minLength":1,"maxLength":8000},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesDealId"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesBody"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCommentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersCommentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCommentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCommentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCommentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersCommentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCommentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCommentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCommentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCommentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesGetParameters0Schema":{"type":"number"},"DocPathsCustomersCompaniesGetParameters1Schema":{"type":"number"},"DocPathsCustomersCompaniesGetParameters2Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters3Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters4Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters5Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters6Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersCompaniesGetParameters8Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters9Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters10Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters11Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters12Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters13Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters14Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters15Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters16Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetParameters17Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters18Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters19Schema":{"type":"string"},"DocPathsCustomersCompaniesGetParameters20Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetParameters21Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetParameters22Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetParameters23Schema":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"display_name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"owner_user_id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"primary_email":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail"},"primary_phone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"lifecycle_stage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"next_interaction_at":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt"},"next_interaction_name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName"},"next_interaction_ref_id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefId"},"next_interaction_icon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon"},"next_interaction_color":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"created_at":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":4000},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTemperature":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt":{"type":"string","format":"date-time"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1":{"type":"string","maxLength":191},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1":{"type":"object","properties":{"at":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt"},"name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName"},"refId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor"}},"required":["at","name"],"additionalProperties":false},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomain":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf1":{"type":"string","format":"uri","maxLength":300},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIndustry":{"type":"string","maxLength":150},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucket":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf1"}]},"DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSource"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"nextInteraction":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesTags"},"legalName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesLegalName"},"brandName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesBrandName"},"domain":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesDomain"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl"},"industry":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIndustry"},"sizeBucket":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBucket"},"annualRevenue":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenue"}},"required":["organizationId","tenantId","displayName"],"additionalProperties":false},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyIdAnyOf1"}]},"DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"companyId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses201ContentApplicationJsonSchemaPropertiesCompanyId"}},"required":["id","companyId"],"additionalProperties":false},"DocPathsCustomersCompaniesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":4000},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTemperature":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt":{"type":"string","format":"date-time"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1":{"type":"string","maxLength":191},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1":{"type":"object","properties":{"at":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt"},"name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName"},"refId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor"}},"required":["at","name"],"additionalProperties":false},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalNameAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandNameAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf1":{"type":"string","maxLength":200},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomain":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomainAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf1":{"type":"string","format":"uri","maxLength":300},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrlAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesIndustry":{"type":"string","maxLength":150},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucket":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucketAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenueAnyOf1"}]},"DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSource"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"nextInteraction":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesTags"},"legalName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesLegalName"},"brandName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesBrandName"},"domain":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesDomain"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl"},"industry":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesIndustry"},"sizeBucket":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesSizeBucket"},"annualRevenue":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutRequestBodyContentApplicationJsonSchemaPropertiesAnnualRevenue"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCompaniesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersCompaniesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCompaniesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCompaniesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersCompaniesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCompaniesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string","enum":["COMPANY_HAS_DEPENDENTS"]},"DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesDeleteResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters0Schema":{"type":"number"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKindAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKindAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKindAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntity":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesDisplayName"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesKind"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityPropertiesOwnerUserId"}},"required":["id","displayName","kind"],"additionalProperties":true},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource"},"todoTitle":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"entity":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntity"}},"required":["id","todoId","todoSource","createdAt","entity"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsCustomerTodosGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetParameters0Schema":{"type":"number"},"DocPathsCustomersDashboardWidgetsNewCustomersGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewCustomersGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewCustomersGetParameters3Schema":{"type":"string","enum":["person","company"]},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewCustomersGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewCustomersGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetParameters0Schema":{"type":"number"},"DocPathsCustomersDashboardWidgetsNewDealsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewDealsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNewDealsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNewDealsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters0Schema":{"type":"number"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetParameters3Schema":{"type":"string","enum":["true","false"]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKindAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"nextInteractionAt":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt"},"nextInteractionName":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName"},"nextInteractionIcon":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon"},"nextInteractionColor":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"}},"required":["id","nextInteractionAt"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesNow":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"now":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesNow"}},"required":["items","now"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDashboardWidgetsNextInteractionsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsAggregateGetParameters1Schema":{"type":"string"},"DocPathsCustomersDealsAggregateGetParameters2SchemaItems":{"type":"string","maxLength":50},"DocPathsCustomersDealsAggregateGetParameters2Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters2SchemaItems"},"maxItems":20},"DocPathsCustomersDealsAggregateGetParameters3SchemaItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsAggregateGetParameters3Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters3SchemaItems"}},"DocPathsCustomersDealsAggregateGetParameters4SchemaItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsAggregateGetParameters4Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters4SchemaItems"}},"DocPathsCustomersDealsAggregateGetParameters5SchemaItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsAggregateGetParameters5Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetParameters5SchemaItems"}},"DocPathsCustomersDealsAggregateGetParameters6Schema":{"type":"boolean"},"DocPathsCustomersDealsAggregateGetParameters7Schema":{"type":"boolean"},"DocPathsCustomersDealsAggregateGetParameters8Schema":{"type":"string"},"DocPathsCustomersDealsAggregateGetParameters9Schema":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf0":{"type":"null"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf1":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf1"}]},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesStageId":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesCount":{"type":"number"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesOpenCount":{"type":"number"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesTotalInBaseCurrency":{"type":"number"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesCurrency":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesTotal":{"type":"number"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesCount":{"type":"number"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItems":{"type":"object","properties":{"currency":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesCurrency"},"total":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesTotal"},"count":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItemsPropertiesCount"}},"required":["currency","total","count"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrency":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrencyItems"}},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesConvertedAll":{"type":"boolean"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesMissingRateCurrenciesItems":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesMissingRateCurrencies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesMissingRateCurrenciesItems"}},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItems":{"type":"object","properties":{"stageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesStageId"},"count":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesCount"},"openCount":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesOpenCount"},"totalInBaseCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesTotalInBaseCurrency"},"byCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesByCurrency"},"convertedAll":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesConvertedAll"},"missingRateCurrencies":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItemsPropertiesMissingRateCurrencies"}},"required":["stageId","count","openCount","totalInBaseCurrency","byCurrency","convertedAll","missingRateCurrencies"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStage":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStageItems"}},"DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"baseCurrencyCode":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCode"},"perStage":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses200ContentApplicationJsonSchemaPropertiesPerStage"}},"required":["baseCurrencyCode","perStage"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsAggregateGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsAggregateGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsAggregateGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsBulkUpdateOwnerPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersDealsBulkUpdateOwnerPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsBulkUpdateOwnerPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateOwnerPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsBulkUpdateOwnerPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsBulkUpdateOwnerPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateOwnerPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsBulkUpdateStagePostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersDealsBulkUpdateStagePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsBulkUpdateStagePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateStagePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsBulkUpdateStagePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsBulkUpdateStagePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsBulkUpdateStagePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsMapGetParameters0Schema":{"type":"number"},"DocPathsCustomersDealsMapGetParameters1Schema":{"type":"number"},"DocPathsCustomersDealsMapGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetParameters3Schema":{"type":"string"},"DocPathsCustomersDealsMapGetParameters4SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters4SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters4SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters4SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters4Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters4SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters4SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters5Schema":{"type":"string"},"DocPathsCustomersDealsMapGetParameters6SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters6SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters6SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters6SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters6Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters6SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters6SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters7SchemaOneOf0":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetParameters7SchemaOneOf1":{"type":"string","enum":["__unassigned"]},"DocPathsCustomersDealsMapGetParameters7Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters7SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters7SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters8SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters8SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters8SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters8SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters8Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters8SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters8SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters9Schema":{"type":"string"},"DocPathsCustomersDealsMapGetParameters10Schema":{"type":"string"},"DocPathsCustomersDealsMapGetParameters11Schema":{"type":"boolean"},"DocPathsCustomersDealsMapGetParameters12Schema":{"type":"boolean"},"DocPathsCustomersDealsMapGetParameters13Schema":{"type":"boolean"},"DocPathsCustomersDealsMapGetParameters14SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters14SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters14SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters14SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters14Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters14SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters14SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters15Schema":{"type":"string","enum":["createdAt","updatedAt","title","value","probability","expectedCloseAt"]},"DocPathsCustomersDealsMapGetParameters16Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersDealsMapGetParameters17Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetParameters18Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetParameters19SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters19SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters19SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters19SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters19Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters19SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters19SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetParameters20SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsMapGetParameters20SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsMapGetParameters20SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters20SchemaOneOf1Items"}},"DocPathsCustomersDealsMapGetParameters20Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters20SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetParameters20SchemaOneOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf1":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbability":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabelAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItemsPropertiesLabel"}},"required":["id","label"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItems"}},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeople":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompaniesItems"}},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesLatitude":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesLongitude":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCityAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCityAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCityAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegionAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegionAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegionAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountryAnyOf0":{"type":"null"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountryAnyOf1":{"type":"string"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountryAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesSource":{"type":"string","enum":["company","person"]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesAddressId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1":{"type":"object","properties":{"latitude":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesLongitude"},"city":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesRegion"},"country":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesCountry"},"source":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesSource"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesEntityId"},"addressId":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1PropertiesAddressId"}},"required":["latitude","longitude","city","region","country","source","entityId","addressId"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocation":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1"}]},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId"},"pipelineStageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageId"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStage"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"companies":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanies"},"people":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeople"},"location":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocation"}},"required":["id","title","status","pipelineId","pipelineStageId","pipelineStage","valueAmount","valueCurrency","probability","expectedCloseAt","ownerUserId","updatedAt","companies","people","location"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsMapGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsMapGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsMapGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsMapGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsMapGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsGetParameters0Schema":{"type":"number"},"DocPathsCustomersDealsGetParameters1Schema":{"type":"number"},"DocPathsCustomersDealsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetParameters3Schema":{"type":"string"},"DocPathsCustomersDealsGetParameters4SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters4SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters4SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters4SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters4Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters4SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters4SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters5Schema":{"type":"string"},"DocPathsCustomersDealsGetParameters6SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters6SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters6SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters6SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters6Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters6SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters6SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters7SchemaOneOf0":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetParameters7SchemaOneOf1":{"type":"string","enum":["__unassigned"]},"DocPathsCustomersDealsGetParameters7Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters7SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters7SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters8SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters8SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters8SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters8SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters8Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters8SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters8SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters9Schema":{"type":"string"},"DocPathsCustomersDealsGetParameters10Schema":{"type":"string"},"DocPathsCustomersDealsGetParameters11Schema":{"type":"boolean"},"DocPathsCustomersDealsGetParameters12Schema":{"type":"boolean"},"DocPathsCustomersDealsGetParameters13Schema":{"type":"boolean"},"DocPathsCustomersDealsGetParameters14SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters14SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters14SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters14SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters14Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters14SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters14SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters15Schema":{"type":"string"},"DocPathsCustomersDealsGetParameters16Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersDealsGetParameters17Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetParameters18Schema":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetParameters19SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters19SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters19SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters19SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters19Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters19SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters19SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters20SchemaOneOf0":{"type":"string"},"DocPathsCustomersDealsGetParameters20SchemaOneOf1Items":{"type":"string"},"DocPathsCustomersDealsGetParameters20SchemaOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters20SchemaOneOf1Items"}},"DocPathsCustomersDealsGetParameters20Schema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters20SchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetParameters20SchemaOneOf1"}]},"DocPathsCustomersDealsGetParameters21Schema":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineIdAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageIdAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf1":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbability":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbabilityAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAtAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPersonIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPersonIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPersonIdsItems"}},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabelAnyOf1"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItemsPropertiesLabel"}},"required":["id","label"],"additionalProperties":false},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeople":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItems"}},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyIdsItems"}},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeopleItems"}},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf01":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf11":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf01"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf11"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf01":{"type":"null"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf11":{"type":"string","format":"uuid"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf01"},{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf11"}]},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"pipeline_stage":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStage"},"pipeline_id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId"},"pipeline_stage_id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineStageId"},"value_amount":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueAmount"},"value_currency":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProbability"},"expected_close_at":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedCloseAt"},"owner_user_id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"created_at":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"personIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPersonIds"},"people":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeople"},"companyIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyIds"},"companies":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanies"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId1"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId1"}},"required":["id","title"],"additionalProperties":true},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersDealsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":50000},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":50},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineStage":{"type":"string","maxLength":100},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineStageId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesValueAmount":{"type":"number"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesValueCurrency":{"type":"string","minLength":3,"maxLength":3},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesProbability":{"type":"number"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedCloseAt":{"type":"string","format":"date-time"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesClosureOutcome":{"type":"string","enum":["won","lost"]},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesLossReasonId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesLossNotes":{"type":"string","maxLength":4000},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyIdsItems"}},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPersonIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPersonIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPersonIdsItems"}},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf1"}]},"DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineStage"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineId"},"pipelineStageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineStageId"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesSource"},"closureOutcome":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesClosureOutcome"},"lossReasonId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesLossReasonId"},"lossNotes":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesLossNotes"},"companyIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyIds"},"personIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPersonIds"},"primaryPersonEntityId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityId"}},"required":["organizationId","tenantId","title"],"additionalProperties":false},"DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersDealsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":50000},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":50},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineStage":{"type":"string","maxLength":100},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineStageId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesValueAmount":{"type":"number"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesValueCurrency":{"type":"string","minLength":3,"maxLength":3},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesProbability":{"type":"number"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedCloseAt":{"type":"string","format":"date-time"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesClosureOutcome":{"type":"string","enum":["won","lost"]},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesLossReasonId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesLossNotes":{"type":"string","maxLength":4000},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyIdsItems"}},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPersonIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPersonIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPersonIdsItems"}},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityIdAnyOf1"}]},"DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineStage"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineId"},"pipelineStageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPipelineStageId"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesSource"},"closureOutcome":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesClosureOutcome"},"lossReasonId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesLossReasonId"},"lossNotes":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesLossNotes"},"companyIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyIds"},"personIds":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPersonIds"},"primaryPersonEntityId":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPersonEntityId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersDealsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersDealsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersDealsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersDealsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersDealsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersDealsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf0":{"type":"null"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf1":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCodeAnyOf1"}]},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesConvertedAll":{"type":"boolean"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesMissingRateCurrenciesItems":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesMissingRateCurrencies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesMissingRateCurrenciesItems"}},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDeltaPropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDeltaPropertiesDirection":{"type":"string","enum":["up","down","unchanged"]},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDelta":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDeltaPropertiesValue"},"direction":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDeltaPropertiesDirection"}},"required":["value","direction"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStageAnyOf0":{"type":"null"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStageAnyOf1":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStageAnyOf1"}]},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesCount":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItems":{"type":"object","properties":{"stage":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesStage"},"count":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesCount"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItemsPropertiesValue"}},"required":["stage","count","value"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStages":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStagesItems"}},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValue":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesValue"},"delta":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDelta"},"stages":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesStages"}},"required":["value","delta","stages"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersCount":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesNeedAttention":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItemsPropertiesId":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItemsPropertiesCount":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItemsPropertiesId"},"count":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItemsPropertiesCount"}},"required":["id","count"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwners":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersItems"}},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersOverflow":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDeals":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesValue"},"delta":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDelta"},"ownersCount":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersCount"},"needAttention":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesNeedAttention"},"owners":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwners"},"ownersOverflow":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDealsPropertiesOwnersOverflow"}},"required":["value","delta","ownersCount","needAttention","owners","ownersOverflow"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesDealsClosed":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesAvgDeal":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarter":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesValue"},"delta":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValuePropertiesDelta"},"dealsClosed":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesDealsClosed"},"avgDeal":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarterPropertiesAvgDeal"}},"required":["value","delta","dealsClosed","avgDeal"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesDeltaPp":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesDirection":{"type":"string","enum":["up","down","unchanged"]},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesPreviousValue":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItemsPropertiesPeriod":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItemsPropertiesRate":{"type":"number"},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItems":{"type":"object","properties":{"period":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItemsPropertiesPeriod"},"rate":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItemsPropertiesRate"}},"required":["period","rate"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeriesItems"}},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRate":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesValue"},"deltaPp":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesDeltaPp"},"direction":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesDirection"},"previousValue":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesPreviousValue"},"series":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRatePropertiesSeries"}},"required":["value","deltaPp","direction","previousValue","series"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"baseCurrencyCode":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesBaseCurrencyCode"},"convertedAll":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesConvertedAll"},"missingRateCurrencies":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesMissingRateCurrencies"},"pipelineValue":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesPipelineValue"},"activeDeals":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesActiveDeals"},"wonThisQuarter":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWonThisQuarter"},"winRate":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses200ContentApplicationJsonSchemaPropertiesWinRate"}},"required":["baseCurrencyCode","convertedAll","missingRateCurrencies","pipelineValue","activeDeals","wonThisQuarter","winRate"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsSummaryGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsSummaryGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsSummaryGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabelAnyOf1"}]},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel"}},"required":["id","value"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems"}},"DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesId"},"entries":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses200ContentApplicationJsonSchemaPropertiesEntries"}},"required":["id","entries"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesCurrencyGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesCurrencyGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesCurrencyGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelectionMode":{"type":"string","enum":["single","multi"]},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibleInTags":{"type":"boolean"},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder":{"type":"number"},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"selectionMode":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelectionMode"},"visibleInTags":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibleInTags"},"sortOrder":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder"}},"required":["id","kind","selectionMode","visibleInTags","sortOrder"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","minLength":1,"maxLength":100},"DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesSelectionMode":{"type":"string","enum":["single","multi"]},"DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibleInTags":{"type":"boolean"},"DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"type":"number"},"DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesKind"},"selectionMode":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesSelectionMode"},"visibleInTags":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibleInTags"},"sortOrder":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"}},"required":["kind"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesSelectionMode":{"type":"string","enum":["single","multi"]},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesVisibleInTags":{"type":"boolean"},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesSortOrder":{"type":"number"},"DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesKind"},"selectionMode":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesSelectionMode"},"visibleInTags":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesVisibleInTags"},"sortOrder":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses200ContentApplicationJsonSchemaPropertiesSortOrder"}},"required":["id","kind","selectionMode","visibleInTags","sortOrder"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindSettingsPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindSettingsPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindSettingsPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsCancelPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersInteractionsCancelPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCancelPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCancelPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCancelPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCancelPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt":{"type":"string","format":"date-time"},"DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchemaPropertiesId"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersInteractionsCompletePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCompletePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCompletePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCompletePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCompletePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCompletePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCompletePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsConflictsGetParameters0Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsCustomersInteractionsConflictsGetParameters1Schema":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"DocPathsCustomersInteractionsConflictsGetParameters2Schema":{"type":"number"},"DocPathsCustomersInteractionsConflictsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsConflictsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsConflictsGetParameters5Schema":{"type":"number"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesHasConflicts":{"type":"boolean"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesId":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesStartTime":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesEndTime":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesType":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesTitle"},"startTime":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesStartTime"},"endTime":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesEndTime"},"type":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItemsPropertiesType"}},"required":["id","title","startTime","endTime","type"],"additionalProperties":false},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflicts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflictsItems"}},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResult":{"type":"object","properties":{"hasConflicts":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesHasConflicts"},"conflicts":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesConflicts"}},"required":["hasConflicts","conflicts"],"additionalProperties":false},"DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesOk"},"result":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses200ContentApplicationJsonSchemaPropertiesResult"}},"required":["ok","result"],"additionalProperties":false},"DocPathsCustomersInteractionsConflictsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsConflictsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsConflictsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsConflictsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCountsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsCountsGetParameters1Schema":{"type":"string","enum":["done","planned","open"]},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesCall":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesEmail":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesMeeting":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesNote":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesTask":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesTotal":{"type":"number"},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResult":{"type":"object","properties":{"call":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesCall"},"email":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesEmail"},"meeting":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesMeeting"},"note":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesNote"},"task":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesTask"},"total":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesTotal"}},"required":["call","email","meeting","note","task","total"],"additionalProperties":false},"DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesOk"},"result":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses200ContentApplicationJsonSchemaPropertiesResult"}},"required":["ok","result"],"additionalProperties":false},"DocPathsCustomersInteractionsCountsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCountsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsCountsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsCountsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsCountsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsGetParameters0Schema":{"type":"number"},"DocPathsCustomersInteractionsGetParameters1Schema":{"type":"string"},"DocPathsCustomersInteractionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetParameters4Schema":{"type":"string"},"DocPathsCustomersInteractionsGetParameters5Schema":{"type":"string"},"DocPathsCustomersInteractionsGetParameters6Schema":{"type":"string"},"DocPathsCustomersInteractionsGetParameters7Schema":{"type":"string"},"DocPathsCustomersInteractionsGetParameters8Schema":{"type":"string","minLength":1},"DocPathsCustomersInteractionsGetParameters9Schema":{"type":"string","format":"date-time"},"DocPathsCustomersInteractionsGetParameters10Schema":{"type":"string","format":"date-time"},"DocPathsCustomersInteractionsGetParameters11Schema":{"type":"string","enum":["true","false"]},"DocPathsCustomersInteractionsGetParameters12Schema":{"type":"string","enum":["true","false"]},"DocPathsCustomersInteractionsGetParameters13Schema":{"type":"string","enum":["scheduledAt","occurredAt","createdAt","updatedAt","status","priority","interactionType","title"]},"DocPathsCustomersInteractionsGetParameters14Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersInteractionsGetParameters15Schema":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInteractionType":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAtAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAtAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAtAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationAnyOf1":{"type":"number"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDuration":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutesAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutesAnyOf1":{"type":"number"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutesAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocation":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDayAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDayAnyOf1":{"type":"boolean"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDay":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDayAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDayAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRuleAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRuleAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRule":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRuleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRuleAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEndAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEndAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEndAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesName":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesEmail":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesStatus":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1Items":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesUserId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesEmail"},"status":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1ItemsPropertiesStatus"}},"additionalProperties":false},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1Items"}},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipants":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipantsAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutesAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutesAnyOf1":{"type":"number"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutesAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesType":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1Items":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesType"},"label":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1ItemsPropertiesLabel"}},"required":["id","type","label"],"additionalProperties":false},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1Items"}},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntities":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntitiesAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanInviteOthers":{"type":"boolean"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanModify":{"type":"boolean"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanSeeList":{"type":"boolean"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1":{"type":"object","properties":{"canInviteOthers":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanInviteOthers"},"canModify":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanModify"},"canSeeList":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1PropertiesCanSeeList"}},"additionalProperties":false},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissions":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissionsAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitleAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealId"},"interactionType":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInteractionType"},"title":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"body":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody"},"status":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"scheduledAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledAt"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt"},"priority":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"externalMessageId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalMessageId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor"},"source":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"duration":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDuration"},"durationMinutes":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMinutes"},"location":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocation"},"allDay":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllDay"},"recurrenceRule":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceRule"},"recurrenceEnd":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecurrenceEnd"},"participants":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParticipants"},"reminderMinutes":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReminderMinutes"},"visibility":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibility"},"linkedEntities":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedEntities"},"guestPermissions":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGuestPermissions"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorEmail"},"dealTitle":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDealTitle"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations"}},"required":["id","entityId","dealId","interactionType","title","body","status","scheduledAt","occurredAt","priority","authorUserId","ownerUserId","createdAt","updatedAt"],"additionalProperties":true},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesNextCursor":{"type":"string"},"DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"nextCursor":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses200ContentApplicationJsonSchemaPropertiesNextCursor"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersInteractionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersInteractionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersInteractionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersInteractionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersInteractionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersInteractionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersInteractionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsTasksGetParameters0Schema":{"type":"number"},"DocPathsCustomersInteractionsTasksGetParameters1Schema":{"type":"number"},"DocPathsCustomersInteractionsTasksGetParameters2Schema":{"type":"string"},"DocPathsCustomersInteractionsTasksGetParameters3Schema":{"type":"string"},"DocPathsCustomersInteractionsTasksGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsCustomersInteractionsTasksGetParameters5Schema":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf1":{"type":"boolean"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf1":{"type":"number"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf0":{"type":"null"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf1":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf1"}]},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomer":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayName"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKind"}},"required":["id","displayName","kind"],"additionalProperties":false},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource"},"todoTitle":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle"},"todoIsDone":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDone"},"todoPriority":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriority"},"todoSeverity":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverity"},"todoDescription":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescription"},"todoDueAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAt"},"todoCustomValues":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValues"},"todoOrganizationId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"externalHref":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHref"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations"},"customer":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomer"}},"required":["id","todoId","todoSource","todoTitle","todoIsDone","todoOrganizationId","organizationId","tenantId","createdAt","customer"],"additionalProperties":false},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersInteractionsTasksGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsTasksGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsTasksGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsTasksGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesLabelId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"labelId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesLabelId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"}},"required":["labelId","entityId"],"additionalProperties":false},"DocPathsCustomersLabelsAssignPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsAssignPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersLabelsAssignPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsAssignPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersLabelsAssignPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsAssignPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsAssignPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsAssignPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsAssignPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug":{"type":"string"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"}},"required":["id","slug","label"],"additionalProperties":false},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesAssignedIdsItems":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesAssignedIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesAssignedIdsItems"}},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"assignedIds":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesAssignedIds"},"total":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","assignedIds","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsCustomersLabelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"type":"string","minLength":1,"maxLength":80,"pattern":"^[a-z0-9_-]+$"},"DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"label":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"}},"required":["label"],"additionalProperties":false},"DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesSlug":{"type":"string"},"DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesId"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses201ContentApplicationJsonSchemaPropertiesLabel"}},"required":["id","slug","label"],"additionalProperties":false},"DocPathsCustomersLabelsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesLabelId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"labelId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesLabelId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"}},"required":["labelId","entityId"],"additionalProperties":false},"DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersLabelsUnassignPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsUnassignPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersLabelsUnassignPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersLabelsUnassignPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersLabelsUnassignPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf0":{"type":"null"},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1PropertiesDisplayName"}},"required":["id","displayName"],"additionalProperties":false},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatch":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatchAnyOf1"}]},"DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"match":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses200ContentApplicationJsonSchemaPropertiesMatch"}},"required":["match"],"additionalProperties":false},"DocPathsCustomersPeopleCheckPhoneGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleCheckPhoneGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleCheckPhoneGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleCheckPhoneGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleCheckPhoneGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleGetParameters0Schema":{"type":"number"},"DocPathsCustomersPeopleGetParameters1Schema":{"type":"number"},"DocPathsCustomersPeopleGetParameters2Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters3Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters4Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters5Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters6Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters7Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters8Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters9Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters10Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters11Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters12Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters13Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters14Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters15Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersPeopleGetParameters16Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetParameters17Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters18Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters19Schema":{"type":"string"},"DocPathsCustomersPeopleGetParameters20Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetParameters21Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetParameters22Schema":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAtAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionNameAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefIdAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIconAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColorAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"display_name":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"owner_user_id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"primary_email":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail"},"primary_phone":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"lifecycle_stage":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"next_interaction_at":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionAt"},"next_interaction_name":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionName"},"next_interaction_ref_id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionRefId"},"next_interaction_icon":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionIcon"},"next_interaction_color":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextInteractionColor"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"created_at":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDisplayName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":4000},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTemperature":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt":{"type":"string","format":"date-time"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1":{"type":"string","maxLength":191},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1":{"type":"object","properties":{"at":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName"},"refId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor"}},"required":["at","name"],"additionalProperties":false},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesFirstName":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLastName":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPreferredName":{"type":"string","maxLength":120},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesJobTitle":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDepartment":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesSeniority":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1":{"type":"string","format":"uri","maxLength":300},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf1"}]},"DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesSource"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"nextInteraction":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTags"},"firstName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesFirstName"},"lastName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLastName"},"preferredName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesPreferredName"},"jobTitle":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesJobTitle"},"department":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesDepartment"},"seniority":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesSeniority"},"timezone":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"linkedInUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrl"},"twitterUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrl"},"companyEntityId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityId"}},"required":["organizationId","tenantId","firstName","lastName"],"additionalProperties":false},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonIdAnyOf1"}]},"DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesId"},"personId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses201ContentApplicationJsonSchemaPropertiesPersonId"}},"required":["id","personId"],"additionalProperties":false},"DocPathsCustomersPeoplePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeoplePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeoplePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeoplePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDisplayName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":4000},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1":{"type":"string","maxLength":50},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTemperature":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt":{"type":"string","format":"date-time"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1":{"type":"string","maxLength":191},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefIdAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIconAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColorAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1":{"type":"object","properties":{"at":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesAt"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesName"},"refId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesRefId"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1PropertiesColor"}},"required":["at","name"],"additionalProperties":false},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteractionAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPreferredName":{"type":"string","maxLength":120},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesJobTitle":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDepartment":{"type":"string","maxLength":150},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesSeniority":{"type":"string","maxLength":100},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1":{"type":"string","format":"uri","maxLength":300},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrlAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityIdAnyOf1"}]},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesFirstName":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLastName":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesSource"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesRenewalQuarter"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"nextInteraction":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesNextInteraction"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTags"},"preferredName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesPreferredName"},"jobTitle":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesJobTitle"},"department":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesDepartment"},"seniority":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesSeniority"},"timezone":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"linkedInUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLinkedInUrl"},"twitterUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesTwitterUrl"},"companyEntityId":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesCompanyEntityId"},"firstName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesFirstName"},"lastName":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutRequestBodyContentApplicationJsonSchemaPropertiesLastName"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPeoplePutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersPeoplePutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPeoplePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeoplePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeoplePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeoplePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeoplePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPeopleDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersPeopleDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPeopleDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string","enum":["PERSON_HAS_DEPENDENTS"]},"DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersPeopleDeleteResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItemsPropertiesOrder":{"type":"number"},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItemsPropertiesId"},"order":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItemsPropertiesOrder"}},"required":["id","order"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStages":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStagesItems"},"minItems":1},"DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"stages":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesStages"}},"required":["organizationId","tenantId","stages"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPipelineStagesReorderPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesReorderPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesReorderPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesReorderPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrder":{"type":"number"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string","format":"date-time"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string","format":"date-time"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPipelineId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"order":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrder"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","pipelineId","label","order","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"}},"required":["items","total"],"additionalProperties":false},"DocPathsCustomersPipelineStagesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesOrder":{"type":"number"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","maxLength":20},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesPipelineId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"order":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesOrder"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["organizationId","tenantId","pipelineId","label"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesOrder":{"type":"number"},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","maxLength":20},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","maxLength":100},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"order":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesOrder"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPipelineStagesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelineStagesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPipelineStagesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelineStagesDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelineStagesDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelineStagesDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesGetParameters0Schema":{"type":"string"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string","format":"date-time"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string","format":"date-time"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"isDefault":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","isDefault","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"}},"required":["items","total"],"additionalProperties":false},"DocPathsCustomersPipelinesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"isDefault":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"}},"required":["organizationId","tenantId","name"],"additionalProperties":false},"DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelinesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"isDefault":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelinesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPipelinesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPipelinesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPipelinesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPipelinesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPipelinesDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPipelinesDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPipelinesDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatGetResponses200ContentApplicationJsonSchemaPropertiesAddressFormat":{"type":"string"},"DocPathsCustomersSettingsAddressFormatGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"addressFormat":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses200ContentApplicationJsonSchemaPropertiesAddressFormat"}},"required":["addressFormat"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesAddressFormat":{"type":"string","enum":["line_first","street_first"]},"DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"addressFormat":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutRequestBodyContentApplicationJsonSchemaPropertiesAddressFormat"}},"required":["organizationId","tenantId","addressFormat"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatPutResponses200ContentApplicationJsonSchemaPropertiesAddressFormat":{"type":"string"},"DocPathsCustomersSettingsAddressFormatPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"addressFormat":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses200ContentApplicationJsonSchemaPropertiesAddressFormat"}},"required":["addressFormat"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsAddressFormatPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsAddressFormatPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsAddressFormatPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModes":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties"}},"DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"dictionarySortModes":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModes"}},"required":["dictionarySortModes"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchemaPropertiesDictionarySortModes":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties"}},"DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"dictionarySortModes":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchRequestBodyContentApplicationJsonSchemaPropertiesDictionarySortModes"}},"required":["dictionarySortModes"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModes":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModesAdditionalProperties"}},"DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"dictionarySortModes":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses200ContentApplicationJsonSchemaPropertiesDictionarySortModes"}},"required":["dictionarySortModes"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsDictionarySortModesPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsDictionarySortModesPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsDictionarySortModesPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdGetResponses200ContentApplicationJsonSchemaPropertiesStuckThresholdDays":{"type":"number"},"DocPathsCustomersSettingsStuckThresholdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"stuckThresholdDays":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses200ContentApplicationJsonSchemaPropertiesStuckThresholdDays"}},"required":["stuckThresholdDays"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesStuckThresholdDays":{"type":"number"},"DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"stuckThresholdDays":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutRequestBodyContentApplicationJsonSchemaPropertiesStuckThresholdDays"}},"required":["organizationId","tenantId","stuckThresholdDays"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdPutResponses200ContentApplicationJsonSchemaPropertiesStuckThresholdDays":{"type":"number"},"DocPathsCustomersSettingsStuckThresholdPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"stuckThresholdDays":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses200ContentApplicationJsonSchemaPropertiesStuckThresholdDays"}},"required":["stuckThresholdDays"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersSettingsStuckThresholdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersSettingsStuckThresholdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersSettingsStuckThresholdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesTagId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"tagId":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesTagId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"}},"required":["organizationId","tenantId","tagId","entityId"],"additionalProperties":false},"DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTagsAssignPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsAssignPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsAssignPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsAssignPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsAssignPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsAssignPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsAssignPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsGetParameters0Schema":{"type":"number"},"DocPathsCustomersTagsGetParameters1Schema":{"type":"number"},"DocPathsCustomersTagsGetParameters2Schema":{"type":"string"},"DocPathsCustomersTagsGetParameters3Schema":{"type":"string"},"DocPathsCustomersTagsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCustomersTagsGetParameters5Schema":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"organization_id":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"updated_at":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","slug","label"],"additionalProperties":false},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersTagsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"type":"string","minLength":1,"maxLength":80,"pattern":"^[a-z0-9_-]+$"},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"type":"string","maxLength":30},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":400},"DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"}},"required":["organizationId","tenantId","slug","label"],"additionalProperties":false},"DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTagsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"type":"string","minLength":1,"maxLength":80,"pattern":"^[a-z0-9_-]+$"},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"type":"string","maxLength":30},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":400},"DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"slug":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTagsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersTagsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersTagsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTagsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersTagsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersTagsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesTagId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"tagId":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesTagId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"}},"required":["organizationId","tenantId","tagId","entityId"],"additionalProperties":false},"DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTagsUnassignPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsUnassignPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsUnassignPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsUnassignPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTagsUnassignPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTagsUnassignPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTagsUnassignPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosGetParameters0Schema":{"type":"number"},"DocPathsCustomersTodosGetParameters1Schema":{"type":"number"},"DocPathsCustomersTodosGetParameters2Schema":{"type":"string"},"DocPathsCustomersTodosGetParameters3Schema":{"type":"string"},"DocPathsCustomersTodosGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsCustomersTodosGetParameters5Schema":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitleAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf1":{"type":"boolean"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDoneAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf1":{"type":"number"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriorityAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverityAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescriptionAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAtAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValuesAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationIdAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAtAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAtAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAtAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHrefAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesIdAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf0":{"type":"null"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf1":{"type":"string"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKindAnyOf1"}]},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomer":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesDisplayName"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerPropertiesKind"}},"required":["id","displayName","kind"],"additionalProperties":false},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoId"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSource"},"todoTitle":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoTitle"},"todoIsDone":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoIsDone"},"todoPriority":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoPriority"},"todoSeverity":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoSeverity"},"todoDescription":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDescription"},"todoDueAt":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoDueAt"},"todoCustomValues":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoCustomValues"},"todoOrganizationId":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoOrganizationId"},"todoUpdatedAt":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTodoUpdatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"externalHref":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalHref"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIntegrations"},"customer":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomer"}},"required":["id","todoId","todoSource","todoTitle","todoIsDone","todoOrganizationId","organizationId","tenantId","createdAt","customer"],"additionalProperties":false},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCustomersTodosGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesIsDone":{"type":"boolean"},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesIsDone1":{"type":"boolean"},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoSourceAllOf0":{"type":"string","minLength":1,"maxLength":120},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoSource":{"allOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoSourceAllOf0"}],"default":"customers:interaction"},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesCreatedByUserId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoCustom":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesCustom":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"isDone":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesIsDone"},"is_done":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesIsDone1"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoSource"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesCreatedByUserId"},"todoCustom":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesTodoCustom"},"custom":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostRequestBodyContentApplicationJsonSchemaPropertiesCustom"}},"required":["entityId","title"],"additionalProperties":true},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkIdAnyOf0":{"type":"null"},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkIdAnyOf1"}]},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoIdAnyOf0":{"type":"null"},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoIdAnyOf1"}]},"DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"linkId":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesLinkId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses201ContentApplicationJsonSchemaPropertiesTodoId"}},"required":["linkId","todoId"],"additionalProperties":false},"DocPathsCustomersTodosPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesLinkId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesIsDone":{"type":"boolean"},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesIsDone1":{"type":"boolean"},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomValues":{"type":"object","additionalProperties":true},"DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"linkId":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesLinkId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"isDone":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesIsDone"},"is_done":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesIsDone1"},"customFields":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomValues"}},"required":["id"],"additionalProperties":true},"DocPathsCustomersTodosPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersTodosPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersTodosPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchemaPropertiesTodoId":{"type":"string","format":"uuid"},"DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteRequestBodyContentApplicationJsonSchemaPropertiesTodoId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersTodosDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersTodosDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersTodosDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersTodosDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersTodosDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersTodosDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdPeopleGetParameters0Schema":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetParameters1Schema":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetParameters2Schema":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetParameters3Schema":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetParameters4Schema":{"type":"string","enum":["name-asc","name-desc","recent"]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartmentAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartmentAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartmentAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAtAnyOf1"}]},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage"},"jobTitle":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobTitle"},"department":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartment"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperature"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"linkedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt"}},"required":["id","displayName","primaryEmail","primaryPhone","status","lifecycleStage","jobTitle","department","createdAt","organizationId","temperature","source","linkedAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsCustomersCompaniesIdPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdPeopleGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType":{"type":"string","enum":["company","person"]},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf1"}]},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf1"}]},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleType":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"entityType":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"userId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"userName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserName"},"userEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmail"},"userPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhone"},"roleType":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleType"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","entityType","entityId","userId","roleType","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesRoleType":{"type":"string","minLength":1,"maxLength":100},"DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"roleType":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesRoleType"},"userId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["roleType","userId"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPutParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["userId"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersCompaniesIdRolesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersCompaniesIdRolesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdRolesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetParameters0Schema":{"type":"string"},"DocPathsCustomersCompaniesIdGetParameters1Schema":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionMode":{"type":"string","enum":["canonical","legacy"]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatusAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefIdAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIconAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIconAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColorAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperatureAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperatureAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperatureAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarterAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarterAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarter":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarterAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarterAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompany":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesSource"},"nextInteractionAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionAt"},"nextInteractionName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionName"},"nextInteractionRefId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionRefId"},"nextInteractionIcon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionIcon"},"nextInteractionColor":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesNextInteractionColor"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTenantId"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesIsActive"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesRenewalQuarter"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanyPropertiesUpdatedAt"}},"required":["id","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomainAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomainAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomain":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomainAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomainAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustryAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustryAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustryAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucket":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenueAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenueAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenueAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesId"},"legalName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLegalName"},"brandName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesBrandName"},"domain":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDomain"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesWebsiteUrl"},"industry":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesIndustry"},"sizeBucket":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSizeBucket"},"annualRevenue":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesAnnualRevenue"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfile":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColor"}},"required":["id","label"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf1":{"type":"boolean"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurpose"},"addressLine1":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitude"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimary"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCreatedAt"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddresses":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesId"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBody"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmail"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesCreatedAt"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColor"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesComments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesActivityType":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubject":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesId"},"activityType":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesActivityType"},"subject":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBody"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAt"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmail"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesCreatedAt"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColor"}},"required":["id","activityType","createdAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivities":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesInteractionType":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesStatus":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityId"},"interactionType":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesInteractionType"},"title":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitle"},"body":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBody"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesStatus"},"scheduledAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAt"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAt"},"priority":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriority"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserId"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserId"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmail"},"dealTitle":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitle"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValues"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColor"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSource"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesIntegrations"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesUpdatedAt"}},"required":["id","interactionType","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbability":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatus"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStage"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSource"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesUpdatedAt"}},"required":["id","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDeals":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoSource":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf1":{"type":"boolean"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoId"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoSource"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedAt"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitle"},"isDone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDone"},"priority":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriority"},"severity":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverity"},"description":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescription"},"dueAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAt"},"todoOrganizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationId"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValues"}},"required":["id","todoId","todoSource","createdAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodos":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitleAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitleAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitleAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartmentAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartmentAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartmentAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperatureAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperatureAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperatureAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAtAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAtAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAtAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDisplayName"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLifecycleStage"},"jobTitle":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesJobTitle"},"department":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesDepartment"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesCreatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesOrganizationId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSource"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesTemperature"},"linkedAt":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLinkedAt"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeople":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItems"}},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0":{"type":"null"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1"}]},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail"}},"required":["userId","name","email"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"interactionMode":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionMode"},"company":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompany"},"profile":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesProfile"},"customFields":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTags"},"addresses":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesAddresses"},"comments":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesComments"},"activities":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesActivities"},"interactions":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractions"},"deals":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesDeals"},"todos":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesTodos"},"people":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesPeople"},"viewer":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer"}},"required":["interactionMode","company","profile","customFields","tags","addresses","comments","activities","interactions","deals","todos","people","viewer"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCompaniesIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCompaniesIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCompaniesIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdCompaniesGetParameters0Schema":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetParameters1Schema":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetParameters2Schema":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetParameters3Schema":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetParameters4Schema":{"type":"string","enum":["label-asc","label-desc","name-asc","name-desc","recent"]},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["company"]},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"subtitle":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"linkedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt"}},"required":["id","label","subtitle","kind","linkedAt"],"additionalProperties":false},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsCustomersDealsIdCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdCompaniesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdPeopleGetParameters0Schema":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetParameters1Schema":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetParameters2Schema":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetParameters3Schema":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetParameters4Schema":{"type":"string","enum":["label-asc","label-desc","name-asc","name-desc","recent"]},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["person"]},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"subtitle":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"linkedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkedAt"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary"}},"required":["id","label","subtitle","kind","linkedAt","isPrimary"],"additionalProperties":false},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsCustomersDealsIdPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdPeopleGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdPeopleGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdGetParameters0Schema":{"type":"string"},"DocPathsCustomersDealsIdGetParameters1Schema":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitleAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatusAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmountAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbabilityAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbabilityAnyOf1":{"type":"number"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbability":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbabilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbabilityAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAtAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAtAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAtAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSourceAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcomeAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcomeAnyOf1":{"type":"string","enum":["won","lost"]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcome":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcomeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcomeAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotesAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotesAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotesAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDeal":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesStatus"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStage"},"pipelineId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineId"},"pipelineStageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesPipelineStageId"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesSource"},"closureOutcome":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesClosureOutcome"},"lossReasonId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossReasonId"},"lossNotes":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesLossNotes"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDealPropertiesUpdatedAt"}},"required":["id","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesKind":{"type":"string","enum":["person"]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesLabel"},"subtitle":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesSubtitle"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesKind"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItemsPropertiesIsPrimary"}},"required":["id","label","kind"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeople":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeopleItems"}},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesKind":{"type":"string","enum":["company"]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesLabel"},"subtitle":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesSubtitle"},"kind":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesKind"}},"required":["id","label","kind"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItems"}},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail"}},"required":["userId","name","email"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesOrder":{"type":"number"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIconAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesLabel"},"order":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesOrder"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItemsPropertiesIcon"}},"required":["id","label","order","color","icon"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStages":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStagesItems"}},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageLabel":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageOrder":{"type":"number"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesTransitionedAt":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItems":{"type":"object","properties":{"stageId":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageId"},"stageLabel":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageLabel"},"stageOrder":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesStageOrder"},"transitionedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItemsPropertiesTransitionedAt"}},"required":["stageId","stageLabel","stageOrder","transitionedAt"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitionsItems"}},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesName":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesEmail":{"type":"string"},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1PropertiesEmail"}},"required":["id","name","email"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"deal":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesDeal"},"people":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPeople"},"companies":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanies"},"customFields":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields"},"viewer":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer"},"pipelineStages":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesPipelineStages"},"stageTransitions":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesStageTransitions"},"owner":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses200ContentApplicationJsonSchemaPropertiesOwner"}},"required":["deal","people","companies","customFields","viewer","pipelineStages","stageTransitions","owner"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdStatsGetParameters0Schema":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValueAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValueAnyOf1":{"type":"number"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValueAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrencyAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesClosureOutcome":{"type":"string","enum":["won","lost"]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesClosedAt":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineNameAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineNameAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineNameAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealsClosedThisPeriod":{"type":"number"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDaysAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDaysAnyOf1":{"type":"number"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDays":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDaysAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDaysAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarterAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarterAnyOf1":{"type":"number"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarter":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarterAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarterAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReasonAnyOf0":{"type":"null"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReasonAnyOf1":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReasonAnyOf1"}]},"DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"dealValue":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealValue"},"dealCurrency":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealCurrency"},"closureOutcome":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesClosureOutcome"},"closedAt":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesClosedAt"},"pipelineName":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesPipelineName"},"dealsClosedThisPeriod":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealsClosedThisPeriod"},"salesCycleDays":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesSalesCycleDays"},"dealRankInQuarter":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesDealRankInQuarter"},"lossReason":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses200ContentApplicationJsonSchemaPropertiesLossReason"}},"required":["dealValue","dealCurrency","closureOutcome","closedAt","pipelineName","dealsClosedThisPeriod","salesCycleDays","dealRankInQuarter","lossReason"],"additionalProperties":false},"DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDealsIdStatsGetResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchParameters0Schema":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchParameters1Schema":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":150},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf0":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf1":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf1"}]},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf0":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf1":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf1"}]},"DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf1"}]},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited"}},"required":["id","value"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdPatchResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdPatchResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdPatchResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdDeleteParameters0Schema":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteParameters1Schema":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess":{"type":"boolean","enum":[true]},"DocPathsCustomersDictionariesKindIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"success":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess"}},"required":["success"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindIdDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindGetParameters0Schema":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesSortMode":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited":{"type":"boolean"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value"],"additionalProperties":false},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"sortMode":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesSortMode"},"items":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostParameters0Schema":{"type":"string"},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":150},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf0":{"type":"string","pattern":"^#([0-9A-Fa-f]{6})$"},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf1":{"type":"null"},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColorOneOf1"}]},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf0":{"type":"string","minLength":1,"maxLength":48},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf1":{"type":"null"},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIconOneOf1"}]},"DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["value"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabelAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf0":{"type":"string","format":"date-time"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf1":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"oneOf":[{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf0"},{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtOneOf1"}]},"DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCustomersDictionariesKindPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsIdVisibilityPatchParameters0Schema":{"type":"string"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersInteractionsIdVisibilityPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersInteractionsIdVisibilityPatchResponses404ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersInteractionsIdVisibilityPatchResponses422ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchParameters1Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"}},"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesCompanyId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesId"},"companyId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesCompanyId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesDisplayName"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1PropertiesIsPrimary"}},"required":["id","companyId","displayName","isPrimary"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResult":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResultAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk"},"result":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses200ContentApplicationJsonSchemaPropertiesResult"}},"required":["ok","result"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteParameters1Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesLinkIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters1Schema":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters2Schema":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters3Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetParameters4Schema":{"type":"string","enum":["name-asc","name-desc","recent"]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitleAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustryAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustryAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustryAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucket":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucketAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalNameAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomainAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomainAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomain":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomainAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomainAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrlAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1":{"type":"object","properties":{"industry":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesIndustry"},"sizeBucket":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesSizeBucket"},"legalName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesLegalName"},"domain":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesDomain"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1PropertiesWebsiteUrl"}},"required":["industry","sizeBucket","legalName","domain","websiteUrl"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfile":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfileAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankNameAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMaskedAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMaskedAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMasked":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMaskedAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMaskedAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTermsAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTermsAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTerms":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTermsAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTermsAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrencyAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1":{"type":"object","properties":{"bankName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankName"},"bankAccountMasked":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesBankAccountMasked"},"paymentTerms":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPaymentTerms"},"preferredCurrency":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1PropertiesPreferredCurrency"}},"required":["bankName","bankAccountMasked","paymentTerms","preferredCurrency"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBilling":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf1PropertiesFormatted":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf1":{"type":"object","properties":{"formatted":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf1PropertiesFormatted"}},"required":["formatted"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddressAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItemsPropertiesColor"}},"required":["id","label","color"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesRoleValue":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesId"},"roleValue":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesRoleValue"}},"required":["id","roleValue"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems"}},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesTitle":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmountAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmountAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesTitle"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1PropertiesValueCurrency"}},"required":["title","valueAmount","valueCurrency"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDeal":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDealAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAtAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1PropertiesAmount":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1PropertiesCurrency":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1":{"type":"object","properties":{"amount":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1PropertiesAmount"},"currency":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1PropertiesCurrency"}},"required":["amount","currency"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClv":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClvAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperatureAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarterAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarterAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarter":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarterAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarterAnyOf1"}]},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"linkId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinkId"},"companyId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary"},"subtitle":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtitle"},"profile":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProfile"},"billing":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBilling"},"primaryAddress":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrimaryAddress"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"roles":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles"},"activeDeal":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveDeal"},"lastContactAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastContactAt"},"clv":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClv"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLifecycleStage"},"temperature":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemperature"},"renewalQuarter":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRenewalQuarter"}},"required":["linkId","companyId","displayName","isPrimary","subtitle","profile","billing","primaryAddress","tags","roles","activeDeal","lastContactAt","clv","status","lifecycleStage","temperature","renewalQuarter"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesEnrichedGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesGetParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"companyId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayName"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary"}},"required":["id","companyId","displayName","isPrimary"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesPostParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"companyId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyId"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"}},"required":["companyId"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesCompanyId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResult":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesId"},"companyId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesCompanyId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesDisplayName"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResultPropertiesIsPrimary"}},"required":["id","companyId","displayName","isPrimary"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"result":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses200ContentApplicationJsonSchemaPropertiesResult"}},"required":["ok","result"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdCompaniesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdCompaniesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdCompaniesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdEmailThreadsGetParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdEmailThreadsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailThreadsGetResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailThreadsGetResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailThreadsGetResponses403ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailThreadsGetResponses404ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdEmailsPostResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses403ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses404ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses409ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses422ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdEmailsPostResponses500ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsCustomersPeopleIdRolesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType":{"type":"string","enum":["company","person"]},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserNameAnyOf1"}]},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmailAnyOf1"}]},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhoneAnyOf1"}]},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleType":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"entityType":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId"},"userId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"userName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserName"},"userEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserEmail"},"userPhone":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserPhone"},"roleType":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoleType"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","entityType","entityId","userId","roleType","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesRoleType":{"type":"string","minLength":1,"maxLength":100},"DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"roleType":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesRoleType"},"userId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["roleType","userId"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPutParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["userId"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPeopleIdRolesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsCustomersPeopleIdRolesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdRolesDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdRolesDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetParameters0Schema":{"type":"string"},"DocPathsCustomersPeopleIdGetParameters1Schema":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionMode":{"type":"string","enum":["canonical","legacy"]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmailAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhoneAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhoneAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhoneAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatusAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStageAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStageAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStageAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSourceAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefIdAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIconAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIconAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIconAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColorAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesIsActive":{"type":"boolean"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPerson":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDisplayName"},"description":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesDescription"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOwnerUserId"},"primaryEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryEmail"},"primaryPhone":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesPrimaryPhone"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesStatus"},"lifecycleStage":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesLifecycleStage"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesSource"},"nextInteractionAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionAt"},"nextInteractionName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionName"},"nextInteractionRefId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionRefId"},"nextInteractionIcon":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionIcon"},"nextInteractionColor":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesNextInteractionColor"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesTenantId"},"isActive":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPersonPropertiesUpdatedAt"}},"required":["id","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitleAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartmentAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartmentAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartmentAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniorityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniorityAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniorityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezoneAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezoneAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezoneAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrlAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrlAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrlAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrlAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrlAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesId"},"firstName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesFirstName"},"lastName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLastName"},"preferredName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesPreferredName"},"jobTitle":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesJobTitle"},"department":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesDepartment"},"seniority":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesSeniority"},"timezone":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTimezone"},"linkedInUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesLinkedInUrl"},"twitterUrl":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesTwitterUrl"},"companyEntityId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesCompanyEntityId"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1PropertiesUpdatedAt"}},"required":["id","updatedAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfile":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfileAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesLabel":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColorAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItemsPropertiesColor"}},"required":["id","label"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurposeAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumberAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumberAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegionAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountryAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitudeAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitudeAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf1":{"type":"boolean"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimaryAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPurpose"},"addressLine1":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesAddressLine2"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesLongitude"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesIsPrimary"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItemsPropertiesCreatedAt"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddresses":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddressesItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesId"},"body":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesBody"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorUserId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAuthorEmail"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesDealId"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesCreatedAt"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItemsPropertiesAppearanceColor"}},"required":["id","createdAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesComments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCommentsItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesActivityType":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubject":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubjectAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesId"},"activityType":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesActivityType"},"subject":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesBody"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesOccurredAt"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesDealId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorUserId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAuthorEmail"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesCreatedAt"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItemsPropertiesAppearanceColor"}},"required":["id","activityType","createdAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivities":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivitiesItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesInteractionType":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBodyAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesStatus":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriorityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmailAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitleAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesIntegrations":{"type":"object","additionalProperties":true},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesId"},"entityId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesEntityId"},"interactionType":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesInteractionType"},"title":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTitle"},"body":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesBody"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesStatus"},"scheduledAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesScheduledAt"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOccurredAt"},"priority":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesPriority"},"authorUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorUserId"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOwnerUserId"},"dealId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesTenantId"},"authorName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorName"},"authorEmail":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAuthorEmail"},"dealTitle":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesDealTitle"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCustomValues"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesAppearanceColor"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesSource"},"_integrations":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesIntegrations"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItemsPropertiesUpdatedAt"}},"required":["id","interactionType","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionsItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatusAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStageAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmountAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrencyAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbability":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbabilityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSourceAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcomeAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcomeAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcome":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcomeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcomeAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotesAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotesAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotesAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesStatus"},"pipelineStage":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesPipelineStage"},"valueAmount":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueAmount"},"valueCurrency":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesValueCurrency"},"probability":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesProbability"},"expectedCloseAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesExpectedCloseAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesOwnerUserId"},"source":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesSource"},"closureOutcome":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesClosureOutcome"},"lossReasonId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossReasonId"},"lossNotes":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesLossNotes"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItemsPropertiesUpdatedAt"}},"required":["id","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDeals":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDealsItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoSource":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitleAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf1":{"type":"boolean"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDoneAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriorityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverityAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescriptionAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAtAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesId"},"todoId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoId"},"todoSource":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoSource"},"createdAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedAt"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCreatedByUserId"},"title":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTitle"},"isDone":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesIsDone"},"priority":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesPriority"},"severity":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesSeverity"},"description":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDescription"},"dueAt":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesDueAt"},"todoOrganizationId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesTodoOrganizationId"},"customValues":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItemsPropertiesCustomValues"}},"required":["id","todoId","todoSource","createdAt"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodos":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodosItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesDisplayName":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesIsPrimary":{"type":"boolean"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesId"},"displayName":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesDisplayName"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItemsPropertiesIsPrimary"}},"required":["id","displayName","isPrimary"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanies":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompaniesItems"}},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserIdAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesNameAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0":{"type":"null"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmailAnyOf1"}]},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesUserId"},"name":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesName"},"email":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewerPropertiesEmail"}},"required":["userId","name","email"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"interactionMode":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractionMode"},"person":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesPerson"},"profile":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesProfile"},"customFields":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCustomFields"},"tags":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTags"},"addresses":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesAddresses"},"comments":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesComments"},"activities":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesActivities"},"interactions":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesInteractions"},"deals":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesDeals"},"todos":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesTodos"},"isPrimary":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesIsPrimary"},"companies":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesCompanies"},"viewer":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses200ContentApplicationJsonSchemaPropertiesViewer"}},"required":["interactionMode","person","profile","customFields","tags","addresses","comments","activities","interactions","deals","todos","isPrimary","companies","viewer"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersPeopleIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersPeopleIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersPeopleIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsGetParameters0Schema":{"type":"number"},"DocPathsSalesAdjustmentKindsGetParameters1Schema":{"type":"number"},"DocPathsSalesAdjustmentKindsGetParameters2Schema":{"type":"string"},"DocPathsSalesAdjustmentKindsGetParameters3Schema":{"type":"string"},"DocPathsSalesAdjustmentKindsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesAdjustmentKindsGetParameters5Schema":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":true},"DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":true},"DocPathsSalesAdjustmentKindsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":true},"DocPathsSalesAdjustmentKindsDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesAdjustmentKindsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesAdjustmentKindsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesAdjustmentKindsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesAdjustmentKindsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsGetParameters0Schema":{"type":"number"},"DocPathsSalesChannelsGetParameters1Schema":{"type":"number"},"DocPathsSalesChannelsGetParameters2Schema":{"type":"string"},"DocPathsSalesChannelsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesChannelsGetParameters4Schema":{"type":"string"},"DocPathsSalesChannelsGetParameters5Schema":{"type":"string"},"DocPathsSalesChannelsGetParameters6Schema":{"type":"string"},"DocPathsSalesChannelsGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesChannelsGetParameters8Schema":{"type":"boolean"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferCount":{"type":"number"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"},"offerCount":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOfferCount"}},"required":["id","name","code","description","statusEntryId","isActive","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl":{"type":"string","format":"uri","maxLength":300},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmail":{"type":"string","format":"email","maxLength":320},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone":{"type":"string","maxLength":50},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":255},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"type":"string","maxLength":120},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":2},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"type":"number"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"type":"number"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl"},"contactEmail":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmail"},"contactPhone":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone"},"addressLine1":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","name","code"],"additionalProperties":false},"DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesChannelsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl":{"type":"string","format":"uri","maxLength":300},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesContactEmail":{"type":"string","format":"email","maxLength":320},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhone":{"type":"string","maxLength":50},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":255},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"type":"string","maxLength":120},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":2},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"type":"number"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"type":"number"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"websiteUrl":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesWebsiteUrl"},"contactEmail":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesContactEmail"},"contactPhone":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhone"},"addressLine1":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id","code"],"additionalProperties":false},"DocPathsSalesChannelsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesChannelsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesChannelsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesChannelsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesChannelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesChannelsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesChannelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesChannelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesChannelsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesChannelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosGetParameters0Schema":{"type":"number"},"DocPathsSalesCreditMemosGetParameters1Schema":{"type":"number"},"DocPathsSalesCreditMemosGetParameters2Schema":{"type":"string"},"DocPathsSalesCreditMemosGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosGetParameters6Schema":{"type":"string"},"DocPathsSalesCreditMemosGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesCreditMemosGetParameters8Schema":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreditMemoNumber":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1"}]},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf1"}]},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount":{"type":"string"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"creditMemoNumber":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreditMemoNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"reason":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount"}},"required":["id","creditMemoNumber","currencyCode"],"additionalProperties":false},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesCreditMemosGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCreditMemoNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate":{"type":"string","format":"date-time"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":4000},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":500},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku":{"type":"string","maxLength":191},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"name":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku"},"description":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["quantity","currencyCode"],"additionalProperties":false},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesInvoiceId"},"creditMemoNumber":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCreditMemoNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"reason":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"lines":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesLines"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"}},"required":["organizationId","tenantId","currencyCode"],"additionalProperties":false},"DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesCreditMemosPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCreditMemoNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesIssueDate":{"type":"string","format":"date-time"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":4000},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":500},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku":{"type":"string","maxLength":191},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"name":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku"},"description":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["quantity","currencyCode"],"additionalProperties":false},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesInvoiceId"},"creditMemoNumber":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCreditMemoNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"reason":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesReason"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"lines":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesLines"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"}},"required":["id"],"additionalProperties":false},"DocPathsSalesCreditMemosPutResponses200ContentApplicationJsonSchemaPropertiesCreditMemoId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"creditMemoId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses200ContentApplicationJsonSchemaPropertiesCreditMemoId"}},"required":["creditMemoId"],"additionalProperties":false},"DocPathsSalesCreditMemosPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesCreditMemosDeleteResponses200ContentApplicationJsonSchemaPropertiesCreditMemoId":{"type":"string","format":"uuid"},"DocPathsSalesCreditMemosDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"creditMemoId":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses200ContentApplicationJsonSchemaPropertiesCreditMemoId"}},"required":["creditMemoId"],"additionalProperties":false},"DocPathsSalesCreditMemosDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesCreditMemosDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesCreditMemosDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesCreditMemosDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters0Schema":{"type":"number"},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters1Schema":{"type":"string","enum":["last24h","last7d","last30d","custom"]},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters2Schema":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters3Schema":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewOrdersGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumber":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatusAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatusAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatusAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatusAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatusAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatusAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"orderNumber":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"fulfillmentStatus":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFulfillmentStatus"},"paymentStatus":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentStatus"},"customerName":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId"},"netAmount":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount"},"grossAmount":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount"},"currency":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id","orderNumber","status","fulfillmentStatus","paymentStatus","customerName","customerEntityId","netAmount","grossAmount","currency","createdAt"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesFrom":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesTo":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRange":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesFrom"},"to":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesTo"}},"required":["from","to"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"dateRange":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses200ContentApplicationJsonSchemaPropertiesDateRange"}},"required":["items","total","dateRange"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewOrdersGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewOrdersGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters0Schema":{"type":"number"},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters1Schema":{"type":"string","enum":["last24h","last7d","last30d","custom"]},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters2Schema":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters3Schema":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewQuotesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumber":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf1":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderIdAnyOf0":{"type":"null"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderIdAnyOf1"}]},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"quoteNumber":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"customerName":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId"},"validFrom":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validUntil":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil"},"netAmount":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount"},"grossAmount":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount"},"currency":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"convertedOrderId":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConvertedOrderId"}},"required":["id","quoteNumber","status","customerName","customerEntityId","validFrom","validUntil","netAmount","grossAmount","currency","createdAt","convertedOrderId"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesFrom":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesTo":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRange":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesFrom"},"to":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRangePropertiesTo"}},"required":["from","to"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"dateRange":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses200ContentApplicationJsonSchemaPropertiesDateRange"}},"required":["items","total","dateRange"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDashboardWidgetsNewQuotesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDashboardWidgetsNewQuotesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsGetParameters0Schema":{"type":"number"},"DocPathsSalesDeliveryWindowsGetParameters1Schema":{"type":"number"},"DocPathsSalesDeliveryWindowsGetParameters2Schema":{"type":"string"},"DocPathsSalesDeliveryWindowsGetParameters3Schema":{"type":"string"},"DocPathsSalesDeliveryWindowsGetParameters4Schema":{"type":"string"},"DocPathsSalesDeliveryWindowsGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesDeliveryWindowsGetParameters6Schema":{"type":"boolean"},"DocPathsSalesDeliveryWindowsGetParameters7Schema":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDaysAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDaysAnyOf1":{"type":"number"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDays":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDaysAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDaysAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTimeAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTimeAnyOf1":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTimeAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf1":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"leadTimeDays":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLeadTimeDays"},"cutoffTime":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCutoffTime"},"timezone":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"}},"required":["id","name","code","description","leadTimeDays","cutoffTime","timezone","isActive","metadata","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesLeadTimeDays":{"type":"number"},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesCutoffTime":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"leadTimeDays":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesLeadTimeDays"},"cutoffTime":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesCutoffTime"},"timezone":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","name","code"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesLeadTimeDays":{"type":"number"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesCutoffTime":{"type":"string","pattern":"^\\d{2}:\\d{2}$"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"leadTimeDays":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesLeadTimeDays"},"cutoffTime":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesCutoffTime"},"timezone":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesDeliveryWindowsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDeliveryWindowsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesDeliveryWindowsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDeliveryWindowsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDeliveryWindowsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDeliveryWindowsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentAddressesGetParameters0Schema":{"type":"number"},"DocPathsSalesDocumentAddressesGetParameters1Schema":{"type":"number"},"DocPathsSalesDocumentAddressesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesGetParameters3Schema":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentAddressesGetParameters4Schema":{"type":"string"},"DocPathsSalesDocumentAddressesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesDocumentAddressesGetParameters6Schema":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentKind":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressIdAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressIdAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurposeAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyNameAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"document_id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentId"},"document_kind":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentKind"},"customer_address_id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerAddressId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose"},"company_name":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyName"},"address_line1":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1"},"address_line2":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2"},"building_number":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuildingNumber"},"flat_number":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFlatNumber"},"city":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegion"},"postal_code":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry"},"latitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLongitude"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","document_id","document_kind","address_line1","created_at","updated_at"],"additionalProperties":false},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesDocumentAddressesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentAddressesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerAddressId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1":{"type":"string","maxLength":2},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"documentId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentId"},"documentKind":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind"},"customerAddressId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerAddressId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"companyName":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCompanyName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber"},"latitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostRequestBodyContentApplicationJsonSchemaPropertiesLongitude"}},"required":["organizationId","tenantId","documentId","documentKind","addressLine1"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentAddressesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerAddressId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesNameAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurposeAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyNameAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1":{"type":"string","maxLength":255},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf1":{"type":"string","maxLength":120},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCodeAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1":{"type":"string","maxLength":2},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf1":{"type":"string","maxLength":60},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumberAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0":{"type":"null"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1":{"type":"number"},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitudeAnyOf1"}]},"DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"documentId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentId"},"documentKind":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind"},"customerAddressId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerAddressId"},"name":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"companyName":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCompanyName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"region":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesRegion"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"buildingNumber":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesBuildingNumber"},"flatNumber":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesFlatNumber"},"latitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLatitude"},"longitude":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutRequestBodyContentApplicationJsonSchemaPropertiesLongitude"}},"required":["organizationId","tenantId","id","documentId","documentKind","addressLine1"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesDocumentAddressesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesDocumentAddressesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentAddressesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesDocumentId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"documentId":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesDocumentId"},"documentKind":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteRequestBodyContentApplicationJsonSchemaPropertiesDocumentKind"}},"required":["id","documentId","documentKind"],"additionalProperties":false},"DocPathsSalesDocumentAddressesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesDocumentAddressesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesDocumentAddressesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentAddressesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentAddressesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetParameters0Schema":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentHistoryGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsSalesDocumentHistoryGetParameters2Schema":{"type":"number"},"DocPathsSalesDocumentHistoryGetParameters3Schema":{"type":"string"},"DocPathsSalesDocumentHistoryGetParameters4Schema":{"type":"string"},"DocPathsSalesDocumentHistoryGetParameters5Schema":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt":{"type":"string","format":"datetime"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["status","action","comment"]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAction":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesIdAnyOf1"}]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesLabel":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActor":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActorPropertiesLabel"}},"required":["id","label"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string","enum":["action_log","note"]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFromAnyOf0":{"type":"null"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFromAnyOf1":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFromAnyOf1"}]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusToAnyOf0":{"type":"null"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusToAnyOf1":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusToAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusToAnyOf1"}]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesDocumentKind":{"type":"string","enum":["order","quote"]},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesCommandId":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesChangedFieldsItems":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesChangedFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesChangedFieldsItems"}},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"type":"object","properties":{"statusFrom":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusFrom"},"statusTo":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesStatusTo"},"documentKind":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesDocumentKind"},"commandId":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesCommandId"},"changedFields":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataPropertiesChangedFields"}},"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"occurredAt":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt"},"kind":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"action":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAction"},"actor":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActor"},"source":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"}},"required":["id","occurredAt","kind","action","actor","source"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesNextCursor":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"nextCursor":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses200ContentApplicationJsonSchemaPropertiesNextCursor"}},"required":["items"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentHistoryGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentHistoryGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentHistoryGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["order","quote","invoice","credit_memo"]},"DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesFormat":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"kind":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"format":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostRequestBodyContentApplicationJsonSchemaPropertiesFormat"}},"required":["organizationId","tenantId","kind"],"additionalProperties":false},"DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesFormat":{"type":"string"},"DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesSequence":{"type":"number"},"DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"number":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesNumber"},"format":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesFormat"},"sequence":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses200ContentApplicationJsonSchemaPropertiesSequence"}},"required":["number","format","sequence"],"additionalProperties":false},"DocPathsSalesDocumentNumbersPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentNumbersPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesDocumentNumbersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesDocumentNumbersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesDocumentNumbersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesGetParameters0Schema":{"type":"number"},"DocPathsSalesInvoicesGetParameters1Schema":{"type":"number"},"DocPathsSalesInvoicesGetParameters2Schema":{"type":"string"},"DocPathsSalesInvoicesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesGetParameters5Schema":{"type":"string"},"DocPathsSalesInvoicesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesInvoicesGetParameters7Schema":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumber":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf0":{"type":"null"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf1":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDateAnyOf1"}]},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDateAnyOf0":{"type":"null"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDateAnyOf1":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDateAnyOf1"}]},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount":{"type":"string"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"invoiceNumber":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate"},"dueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount"}},"required":["id","invoiceNumber","currencyCode"],"additionalProperties":false},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesInvoiceNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate":{"type":"string","format":"date-time"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDueDate":{"type":"string","format":"date-time"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":500},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku":{"type":"string","maxLength":191},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind"},"name":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku"},"description":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["quantity","currencyCode"],"additionalProperties":false},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount":{"type":"number"},"DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"invoiceNumber":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesInvoiceNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"dueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDueDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"lines":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount"}},"required":["organizationId","tenantId","currencyCode"],"additionalProperties":false},"DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesInvoiceNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesIssueDate":{"type":"string","format":"date-time"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDueDate":{"type":"string","format":"date-time"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":500},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku":{"type":"string","maxLength":191},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind"},"name":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSku"},"description":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["quantity","currencyCode"],"additionalProperties":false},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount":{"type":"number"},"DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"invoiceNumber":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesInvoiceNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"issueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"dueDate":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDueDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"lines":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLines"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount"}},"required":["id"],"additionalProperties":false},"DocPathsSalesInvoicesPutResponses200ContentApplicationJsonSchemaPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses200ContentApplicationJsonSchemaPropertiesInvoiceId"}},"required":["invoiceId"],"additionalProperties":false},"DocPathsSalesInvoicesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesInvoicesDeleteResponses200ContentApplicationJsonSchemaPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesInvoicesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses200ContentApplicationJsonSchemaPropertiesInvoiceId"}},"required":["invoiceId"],"additionalProperties":false},"DocPathsSalesInvoicesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesInvoicesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesInvoicesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesInvoicesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesNotesGetParameters0Schema":{"type":"number"},"DocPathsSalesNotesGetParameters1Schema":{"type":"number"},"DocPathsSalesNotesGetParameters2Schema":{"type":"string","enum":["order","quote","invoice","credit_memo"]},"DocPathsSalesNotesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetParameters6Schema":{"type":"string"},"DocPathsSalesNotesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesNotesGetParameters8Schema":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextType":{"type":"string","enum":["order","quote","invoice","credit_memo"]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextId":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteIdAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteIdAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserIdAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIconAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColorAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"context_type":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextType"},"context_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContextId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"quote_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId"},"body":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBody"},"author_user_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorUserId"},"appearance_icon":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceIcon"},"appearance_color":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAppearanceColor"},"organization_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","context_type","context_id","body","created_at"],"additionalProperties":true},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesNotesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesNotesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesNotesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesNotesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesContextType":{"type":"string","enum":["order","quote","invoice","credit_memo"]},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesContextId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","minLength":1,"maxLength":8000},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"contextType":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesContextType"},"contextId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesContextId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"body":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsSalesNotesPostRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["organizationId","tenantId","contextType","contextId","body"],"additionalProperties":false},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf0":{"type":"null"},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserIdAnyOf1"}]},"DocPathsSalesNotesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"authorUserId":{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses201ContentApplicationJsonSchemaPropertiesAuthorUserId"}},"required":["id","authorUserId"],"additionalProperties":false},"DocPathsSalesNotesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesNotesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesNotesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","minLength":1,"maxLength":8000},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId":{"type":"string","format":"uuid"},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0":{"type":"null"},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1":{"type":"string","maxLength":100},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIconAnyOf1"}]},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0":{"type":"null"},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColorAnyOf1"}]},"DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"body":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesBody"},"authorUserId":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAuthorUserId"},"appearanceIcon":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceIcon"},"appearanceColor":{"$ref":"#/components/schemas/DocPathsSalesNotesPutRequestBodyContentApplicationJsonSchemaPropertiesAppearanceColor"}},"required":["id"],"additionalProperties":false},"DocPathsSalesNotesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesNotesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesNotesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesNotesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesNotesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesNotesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesNotesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesNotesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesNotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesNotesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesNotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesNotesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesNotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsGetParameters0Schema":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetParameters1Schema":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsGetParameters3Schema":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesOrderAdjustmentsGetParameters5Schema":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf1":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountNet":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountGross":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"order_line_id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"calculator_key":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKey"},"promotion_id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate"},"amount_net":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountNet"},"amount_gross":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountGross"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"position":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","order_id","scope","kind","rate","amount_net","amount_gross","position","created_at","updated_at"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountNet":{"type":"number"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountGross":{"type":"number"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","orderId"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountNet":{"type":"number"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountGross":{"type":"number"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","orderId"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1"}]},"DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderAdjustmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderAdjustmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderAdjustmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderAdjustmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesGetParameters0Schema":{"type":"number"},"DocPathsSalesOrderLineStatusesGetParameters1Schema":{"type":"number"},"DocPathsSalesOrderLineStatusesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesGetParameters3Schema":{"type":"string"},"DocPathsSalesOrderLineStatusesGetParameters4Schema":{"type":"string"},"DocPathsSalesOrderLineStatusesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesOrderLineStatusesGetParameters6Schema":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["organizationId","tenantId","value"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","id"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderLineStatusesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLineStatusesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderLineStatusesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLineStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLineStatusesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLineStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesGetParameters0Schema":{"type":"number"},"DocPathsSalesOrderLinesGetParameters1Schema":{"type":"number"},"DocPathsSalesOrderLinesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetParameters4Schema":{"type":"string"},"DocPathsSalesOrderLinesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesOrderLinesGetParameters6Schema":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfiguration":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1"}]},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"line_number":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"product_id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"product_variant_id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantId"},"catalog_snapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshot"},"name":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"quantity_unit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnit"},"normalized_quantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedQuantity"},"normalized_unit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnit"},"uom_snapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshot"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"unit_price_net":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet"},"unit_price_gross":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross"},"discount_amount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountAmount"},"discount_percent":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent"},"tax_rate":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate"},"tax_amount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount"},"total_net_amount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount"},"total_gross_amount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfiguration"},"promotion_code":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCode"},"promotion_snapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"custom_field_set_id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","order_id","line_number","kind","quantity","normalized_quantity","currency_code","unit_price_net","unit_price_gross","discount_amount","discount_percent","tax_rate","tax_amount","total_net_amount","total_gross_amount","created_at","updated_at"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesLineNumber":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","orderId","currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1"}]},"DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses201ContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderLinesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesLineNumber":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","orderId","currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderIdAnyOf1"}]},"DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses200ContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderLinesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId"}},"required":["id","orderId"],"additionalProperties":false},"DocPathsSalesOrderLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderLinesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderLinesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesGetParameters0Schema":{"type":"number"},"DocPathsSalesOrderStatusesGetParameters1Schema":{"type":"number"},"DocPathsSalesOrderStatusesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesGetParameters3Schema":{"type":"string"},"DocPathsSalesOrderStatusesGetParameters4Schema":{"type":"string"},"DocPathsSalesOrderStatusesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesOrderStatusesGetParameters6Schema":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesOrderStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["organizationId","tenantId","value"],"additionalProperties":false},"DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrderStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"id":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","id"],"additionalProperties":false},"DocPathsSalesOrderStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderStatusesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrderStatusesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrderStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrderStatusesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrderStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrderStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrderStatusesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrderStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersGetParameters0Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters1Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters2Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetParameters6Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters7Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters8Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters9Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters10Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters11Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters12Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters13Schema":{"type":"number"},"DocPathsSalesOrdersGetParameters14Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters15Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters16Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters17Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters18Schema":{"type":"string"},"DocPathsSalesOrdersGetParameters19Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesOrdersGetParameters20Schema":{"type":"boolean"},"DocPathsSalesOrdersGetParameters21Schema":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumberAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumberAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumberAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf0":{"type":"null"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf1":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf1"}]},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"orderNumber":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId"},"customerContactId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactId"},"billingAddressId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressId"},"shippingAddressId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressId"},"customerReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReference"},"externalReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReference"},"comment":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment"},"placedAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt"},"expectedDeliveryAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshot"},"billingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshot"},"shippingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshot"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId"},"shippingMethodCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode"},"shippingMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshot"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId"},"paymentMethodCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode"},"paymentMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"channelName":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelName"},"channelCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCode"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"validFrom":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validUntil":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil"},"lineItemCount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCount"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount"},"shippingNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmount"},"shippingGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmount"},"surchargeTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"},"customValues":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"}},"required":["id","orderNumber","status","customerEntityId","customerContactId","billingAddressId","shippingAddressId","currencyCode","channelId","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOrderNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExternalReference":{"type":"string","maxLength":191},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerReference":{"type":"string","maxLength":191},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerEntityId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerContactId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf0":{"type":"string","maxLength":50},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf1":{"type":"string","enum":[""]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf2":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhone":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf1"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf2"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1":{"type":"object","properties":{"primaryPhone":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhone"}},"additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomer":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesContact":{},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot":{"type":"object","properties":{"customer":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomer"},"contact":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesContact"}},"additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingAddressId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesFulfillmentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxStrategyKey":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountStrategyKey":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodCode":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowCode":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodCode":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPlacedAt":{"type":"string","format":"date-time"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedDeliveryAt":{"type":"string","format":"date-time"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDueAt":{"type":"string","format":"date-time"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesComments":{"type":"string","maxLength":4000},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesInternalNotes":{"type":"string","maxLength":4000},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogSnapshot"}},"required":["currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesOrderLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition"}},"additionalProperties":false},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItems"}},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingNetAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingGrossAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSurchargeTotalAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLineItemCount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesRefundedTotalAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount":{"type":"number"},"DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderNumber":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOrderNumber"},"externalReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExternalReference"},"customerReference":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerReference"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerEntityId"},"customerContactId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerContactId"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot"},"billingAddressId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressId"},"shippingAddressId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingAddressId"},"billingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"shippingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"exchangeRate":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"fulfillmentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesFulfillmentStatusEntryId"},"paymentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentStatusEntryId"},"taxStrategyKey":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxStrategyKey"},"discountStrategyKey":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountStrategyKey"},"taxInfo":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId"},"shippingMethodCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodCode"},"deliveryWindowId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowId"},"deliveryWindowCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowCode"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId"},"paymentMethodCode":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodCode"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"placedAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPlacedAt"},"expectedDeliveryAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedDeliveryAt"},"dueAt":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDueAt"},"comments":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesComments"},"internalNotes":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesInternalNotes"},"shippingMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"deliveryWindowSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"paymentMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"lines":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLines"},"adjustments":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustments"},"tags":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTags"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"shippingNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingNetAmount"},"shippingGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesShippingGrossAmount"},"surchargeTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSurchargeTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"},"lineItemCount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLineItemCount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOutstandingAmount"}},"required":["organizationId","tenantId","currencyCode","lines"],"additionalProperties":false},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesCode":{"type":"string","enum":["sales.order.payment_ledger_input_deprecated"]},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesFieldsItems":{"type":"string","enum":["paidTotalAmount","refundedTotalAmount","outstandingAmount"]},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesFieldsItems"}},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesCode"},"fields":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItemsPropertiesFields"}},"required":["code","fields"],"additionalProperties":false},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarnings":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarningsItems"}},"DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId"},"warnings":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses201ContentApplicationJsonSchemaPropertiesWarnings"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsSalesOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesOrdersDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesOrdersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesOrdersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsGetParameters0Schema":{"type":"number"},"DocPathsSalesPaymentMethodsGetParameters1Schema":{"type":"number"},"DocPathsSalesPaymentMethodsGetParameters2Schema":{"type":"string"},"DocPathsSalesPaymentMethodsGetParameters3Schema":{"type":"string"},"DocPathsSalesPaymentMethodsGetParameters4Schema":{"type":"string"},"DocPathsSalesPaymentMethodsGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesPaymentMethodsGetParameters6Schema":{"type":"boolean"},"DocPathsSalesPaymentMethodsGetParameters7Schema":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTermsAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTermsAnyOf1":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerms":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTermsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTermsAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettings":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey"},"terms":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerms"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettings"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"}},"required":["id","name","code","description","providerKey","terms","isActive","metadata","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesPaymentMethodsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderKey":{"type":"string","maxLength":120},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTerms":{"type":"string","maxLength":4000},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderKey"},"terms":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTerms"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"}},"required":["organizationId","tenantId","name","code"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderKey":{"type":"string","maxLength":120},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTerms":{"type":"string","maxLength":4000},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderKey"},"terms":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTerms"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesPaymentMethodsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentMethodsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentMethodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesPaymentMethodsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesPaymentMethodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentMethodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentMethodsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentMethodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesGetParameters0Schema":{"type":"number"},"DocPathsSalesPaymentStatusesGetParameters1Schema":{"type":"number"},"DocPathsSalesPaymentStatusesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesGetParameters3Schema":{"type":"string"},"DocPathsSalesPaymentStatusesGetParameters4Schema":{"type":"string"},"DocPathsSalesPaymentStatusesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesPaymentStatusesGetParameters6Schema":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesPaymentStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["organizationId","tenantId","value"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","id"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesPaymentStatusesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentStatusesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesPaymentStatusesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesPaymentStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentStatusesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsGetParameters0Schema":{"type":"number"},"DocPathsSalesPaymentsGetParameters1Schema":{"type":"number"},"DocPathsSalesPaymentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetParameters4Schema":{"type":"string"},"DocPathsSalesPaymentsGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesPaymentsGetParameters6Schema":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderIdAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodNameAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodNameAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodNameAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReferenceAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReferenceAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReferenceAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmountAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmountAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAtAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAtAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAtAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf01":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf11":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf11"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf01":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf11":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf11"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items"}},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf01":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items1":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf11":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items1"}},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf11"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"payment_method_id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId"},"payment_method_name":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodName"},"payment_method_code":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode"},"payment_reference":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentReference"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"status_label":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabel"},"amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"captured_amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAmount"},"refunded_amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedAmount"},"received_at":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt"},"captured_at":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapturedAt"},"custom_field_set_id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId1"},"custom_values":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"},"customValues":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues1"},"custom_fields":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields1"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","amount","currency_code","created_at"],"additionalProperties":false},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentReference":{"type":"string","maxLength":191},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmount":{"type":"number"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCapturedAmount":{"type":"number"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesRefundedAmount":{"type":"number"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt":{"type":"string","format":"date-time"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCapturedAt":{"type":"string","format":"date-time"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesAmount":{"type":"number"},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesOrderId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesInvoiceId"},"amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["amount","currencyCode"],"additionalProperties":false},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems"}},"DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId"},"paymentReference":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentReference"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"documentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId"},"lineStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId"},"amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"capturedAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCapturedAmount"},"refundedAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesRefundedAmount"},"receivedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt"},"capturedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCapturedAt"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"allocations":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocations"}},"required":["organizationId","tenantId","amount","currencyCode"],"additionalProperties":false},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1"}]},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1":{"type":"object","properties":{"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount"}},"additionalProperties":false},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotals":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1"}]},"DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesId"},"orderTotals":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesOrderTotals"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentReference":{"type":"string","maxLength":191},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmount":{"type":"number"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCapturedAmount":{"type":"number"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesRefundedAmount":{"type":"number"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt":{"type":"string","format":"date-time"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCapturedAt":{"type":"string","format":"date-time"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesAmount":{"type":"number"},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesOrderId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesInvoiceId"},"amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["amount","currencyCode"],"additionalProperties":false},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems"}},"DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId"},"paymentReference":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentReference"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"documentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId"},"lineStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId"},"amount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"capturedAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCapturedAmount"},"refundedAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesRefundedAmount"},"receivedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt"},"capturedAt":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCapturedAt"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"allocations":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocations"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1"}]},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1":{"type":"object","properties":{"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount"}},"additionalProperties":false},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotals":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1"}]},"DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesId"},"orderTotals":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses200ContentApplicationJsonSchemaPropertiesOrderTotals"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0":{"type":"null"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmountAnyOf1"}]},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0":{"type":"null"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1":{"type":"number"},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmountAnyOf1"}]},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1":{"type":"object","properties":{"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1PropertiesOutstandingAmount"}},"additionalProperties":false},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotals":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotalsAnyOf1"}]},"DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesId"},"orderTotals":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOrderTotals"}},"required":["id"],"additionalProperties":false},"DocPathsSalesPaymentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPaymentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPaymentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPaymentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPriceKindsGetParameters0Schema":{"type":"number"},"DocPathsSalesPriceKindsGetParameters1Schema":{"type":"number"},"DocPathsSalesPriceKindsGetParameters2Schema":{"type":"string"},"DocPathsSalesPriceKindsGetParameters3Schema":{"type":"string"},"DocPathsSalesPriceKindsGetParameters4Schema":{"type":"string"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayMode":{"type":"string"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"display_mode":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDisplayMode"},"is_active":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"}},"required":["id","code","title","display_mode","is_active"],"additionalProperties":false},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesPriceKindsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPriceKindsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesPriceKindsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesPriceKindsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesPriceKindsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsGetParameters0Schema":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetParameters1Schema":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsGetParameters3Schema":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesQuoteAdjustmentsGetParameters5Schema":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf1":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKeyAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountNet":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountGross":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"quote_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId"},"quote_line_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"calculator_key":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalculatorKey"},"promotion_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate"},"amount_net":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountNet"},"amount_gross":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmountGross"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"position":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","quote_id","scope","kind","rate","amount_net","amount_gross","position","created_at","updated_at"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteLineId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountNet":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountGross":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"quoteLineId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses201ContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteLineId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountNet":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountGross":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"quoteLineId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1"}]},"DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses200ContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesQuoteAdjustmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteAdjustmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteAdjustmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteAdjustmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetParameters0Schema":{"type":"number"},"DocPathsSalesQuoteLinesGetParameters1Schema":{"type":"number"},"DocPathsSalesQuoteLinesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetParameters4Schema":{"type":"string"},"DocPathsSalesQuoteLinesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesQuoteLinesGetParameters6Schema":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshotAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnitAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfiguration":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigurationAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCodeAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshotAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetIdAnyOf1"}]},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"quote_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId"},"line_number":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"product_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"product_variant_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductVariantId"},"catalog_snapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogSnapshot"},"name":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"quantity_unit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityUnit"},"normalized_quantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedQuantity"},"normalized_unit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNormalizedUnit"},"uom_snapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUomSnapshot"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"unit_price_net":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceNet"},"unit_price_gross":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPriceGross"},"discount_amount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountAmount"},"discount_percent":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent"},"tax_rate":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate"},"tax_amount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount"},"total_net_amount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount"},"total_gross_amount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfiguration"},"promotion_code":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionCode"},"promotion_snapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotionSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"custom_field_set_id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldSetId"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","quote_id","line_number","kind","quantity","normalized_quantity","currency_code","unit_price_net","unit_price_gross","discount_amount","discount_percent","tax_rate","tax_amount","total_net_amount","total_gross_amount","created_at","updated_at"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesLineNumber":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot"},"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","quoteId","currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1"}]},"DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesLineNumber":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogSnapshot"},"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","quoteId","currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0":{"type":"null"},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteIdAnyOf1"}]},"DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"}},"required":["id","quoteId"],"additionalProperties":false},"DocPathsSalesQuoteLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesQuoteLinesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesQuoteLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuoteLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuoteLinesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuoteLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostRequestBodyContentApplicationJsonSchemaPropertiesToken":{"type":"string","format":"uuid"},"DocPathsSalesQuotesAcceptPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"token":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostRequestBodyContentApplicationJsonSchemaPropertiesToken"}},"required":["token"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchemaPropertiesOrderNumber":{"type":"string"},"DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchemaPropertiesOrderId"},"orderNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses200ContentApplicationJsonSchemaPropertiesOrderNumber"}},"required":["orderId","orderNumber"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesAcceptPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesAcceptPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesAcceptPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesAcceptPostResponses429ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesAcceptPostResponses429ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesAcceptPostResponses429ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesOrderNumber":{"type":"string","maxLength":191},"DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"orderNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostRequestBodyContentApplicationJsonSchemaPropertiesOrderNumber"}},"required":["quoteId"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses200ContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesConvertPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses200ContentApplicationJsonSchemaPropertiesOrderId"}},"required":["orderId"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuotesConvertPostResponses423ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesGetParameters0Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters1Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters2Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetParameters6Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters7Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters8Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters9Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters10Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters11Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters12Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters13Schema":{"type":"number"},"DocPathsSalesQuotesGetParameters14Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters15Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters16Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters17Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters18Schema":{"type":"string"},"DocPathsSalesQuotesGetParameters19Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesQuotesGetParameters20Schema":{"type":"boolean"},"DocPathsSalesQuotesGetParameters21Schema":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumberAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumberAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumberAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReferenceAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReferenceAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommentAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshotAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshotAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshotAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshotAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCodeAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshotAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelNameAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCodeAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf0":{"type":"null"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf1":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmountAnyOf1"}]},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"quoteNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteNumber"},"status":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerEntityId"},"customerContactId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerContactId"},"billingAddressId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressId"},"shippingAddressId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressId"},"customerReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerReference"},"externalReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalReference"},"comment":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesComment"},"placedAt":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt"},"expectedDeliveryAt":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerSnapshot"},"billingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAddressSnapshot"},"shippingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingAddressSnapshot"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId"},"shippingMethodCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode"},"shippingMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodSnapshot"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodId"},"paymentMethodCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodCode"},"paymentMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentMethodSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"channelName":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelName"},"channelCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelCode"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"validFrom":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validUntil":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil"},"lineItemCount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineItemCount"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotalAmount"},"shippingNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingNetAmount"},"shippingGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingGrossAmount"},"surchargeTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSurchargeTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrandTotalGrossAmount"},"paidTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidTotalAmount"},"refundedTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundedTotalAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOutstandingAmount"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"},"customValues":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"}},"required":["id","quoteNumber","status","customerEntityId","customerContactId","billingAddressId","shippingAddressId","currencyCode","channelId","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteNumber":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerEntityId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerContactId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf0":{"type":"string","maxLength":50},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf1":{"type":"string","enum":[""]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf2":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhone":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf1"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhoneOneOf2"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1":{"type":"object","properties":{"primaryPhone":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1PropertiesPrimaryPhone"}},"additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomer":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomerAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesContact":{},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot":{"type":"object","properties":{"customer":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesCustomer"},"contact":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotPropertiesContact"}},"additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingAddressId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesValidUntil":{"type":"string","format":"date-time"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesComments":{"type":"string","maxLength":4000},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodCode":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowCode":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodCode":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind":{"type":"string","enum":["product","service","shipping","discount","adjustment"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductVariantId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"type":"string","maxLength":255},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"type":"string","maxLength":4000},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesComment":{"type":"string","maxLength":2000},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesConfiguration":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionCode":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion":{"type":"number","enum":[1]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductIdAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantIdAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode":{"type":"string","enum":["half_up","down","up"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding":{"type":"object","properties":{"mode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesMode"},"scale":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRoundingPropertiesScale"}},"required":["mode","scale"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionIdAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource":{"type":"object","properties":{"conversionId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesConversionId"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSourcePropertiesResolvedAt"}},"required":["conversionId","resolvedAt"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled":{"type":"boolean"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1":{"type":"string","enum":["kg","l","m2","m3","pc"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReferencePropertiesNetPerReference"}},"required":["enabled","referenceUnitCode","baseQuantity"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"version":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesVersion"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesProductVariantId"},"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"},"enteredQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredQuantity"},"toBaseFactor":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesToBaseFactor"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesNormalizedQuantity"},"rounding":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesRounding"},"source":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesSource"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesUnitPriceReference"}},"required":["version","productId","productVariantId","baseUnitCode","enteredUnitCode","enteredQuantity","toBaseFactor","normalizedQuantity","rounding","source"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFieldSetId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"type":"string","maxLength":25},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string","maxLength":25},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceMode":{"type":"string","enum":["net","gross"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmountBasis":{"type":"string","enum":["unit","line"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogSnapshot":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesStatusEntryId"},"productId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId"},"productVariantId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductVariantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"comment":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesComment"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"configuration":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesConfiguration"},"promotionCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionCode"},"promotionSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPromotionSnapshot"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCustomFields"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"priceId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceId"},"priceMode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceMode"},"taxRateId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateId"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount"},"discountAmountBasis":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmountBasis"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"catalogSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogSnapshot"}},"required":["currencyCode","quantity"],"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope":{"type":"string","enum":["order","line"]},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCode":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel":{"type":"string","maxLength":255},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCalculatorKey":{"type":"string","maxLength":120},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPromotionId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItems":{"type":"object","properties":{"quoteLineId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineId"},"scope":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCode"},"label":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel"},"calculatorKey":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCalculatorKey"},"promotionId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPromotionId"},"rate":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCustomFields"},"position":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition"}},"additionalProperties":false},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustmentsItems"}},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLineItemCount":{"type":"number"},"DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"quoteNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"customerEntityId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerEntityId"},"customerContactId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerContactId"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot"},"billingAddressId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressId"},"shippingAddressId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingAddressId"},"billingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"shippingAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"validFrom":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validUntil":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesValidUntil"},"comments":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesComments"},"taxInfo":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId"},"shippingMethodCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodCode"},"deliveryWindowId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowId"},"deliveryWindowCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveryWindowCode"},"paymentMethodId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodId"},"paymentMethodCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentMethodCode"},"shippingMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"deliveryWindowSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"paymentMethodSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesBillingAddressSnapshot"},"customFieldSetId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFieldSetId"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"lines":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLines"},"adjustments":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesAdjustments"},"tags":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTags"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesGrandTotalGrossAmount"},"lineItemCount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesLineItemCount"}},"required":["organizationId","tenantId","currencyCode"],"additionalProperties":false},"DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesQuotesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsSalesQuotesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesQuotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesQuotesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesQuotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesValidForDaysAllOf0":{"type":"number"},"DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesValidForDays":{"allOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesValidForDaysAllOf0"}],"default":14},"DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"validForDays":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostRequestBodyContentApplicationJsonSchemaPropertiesValidForDays"}},"required":["quoteId"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSalesQuotesSendPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSalesQuotesSendPostResponses423ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsGetParameters0Schema":{"type":"number"},"DocPathsSalesReturnsGetParameters1Schema":{"type":"number"},"DocPathsSalesReturnsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesReturnsGetParameters3Schema":{"type":"string"},"DocPathsSalesReturnsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnNumber":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0":{"type":"null"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1"}]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAtAnyOf0":{"type":"null"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAtAnyOf1":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAtAnyOf1"}]},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"return_number":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnNumber"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"reason":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason"},"notes":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"returned_at":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReturnedAt"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"total_net_amount":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNetAmount"},"total_gross_amount":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGrossAmount"}},"required":["id","order_id","return_number","created_at","updated_at"],"additionalProperties":true},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesReturnsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":4000},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":4000},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesReturnedAt":{"type":"string","format":"date-time"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"}},"required":["orderLineId","quantity"],"additionalProperties":false},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1},"DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"reason":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"notes":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"returnedAt":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesReturnedAt"},"lines":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["organizationId","tenantId","orderId","lines"],"additionalProperties":false},"DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesReturnsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":4000},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":4000},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesReturnedAt":{"type":"string","format":"date-time"},"DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"reason":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesReason"},"notes":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"returnedAt":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutRequestBodyContentApplicationJsonSchemaPropertiesReturnedAt"}},"required":["organizationId","tenantId","id","orderId"],"additionalProperties":false},"DocPathsSalesReturnsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesReturnsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesReturnsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId"}},"required":["organizationId","tenantId","id","orderId"],"additionalProperties":false},"DocPathsSalesReturnsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesReturnsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesReturnsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesOrderNumberFormat":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesQuoteNumberFormat":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesNextOrderNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesNextQuoteNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesToken":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesDescription":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItems":{"type":"object","properties":{"token":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesToken"},"description":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesDescription"}},"required":["token","description"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokens":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokensItems"}},"DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"quoteNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesQuoteNumberFormat"},"nextOrderNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesNextOrderNumber"},"nextQuoteNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesNextQuoteNumber"},"tokens":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses200ContentApplicationJsonSchemaPropertiesTokens"}},"required":["orderNumberFormat","quoteNumberFormat","nextOrderNumber","nextQuoteNumber"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNextNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteNextNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items":{"type":"string","minLength":1,"maxLength":120},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items"},"maxItems":200},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"quoteNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"orderNextNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNextNumber"},"quoteNextNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteNextNumber"},"orderCustomerEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses"},"orderAddressEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses"}},"required":["organizationId","tenantId","orderNumberFormat","quoteNumberFormat"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesOrderNumberFormat":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesQuoteNumberFormat":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesNextOrderNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesNextQuoteNumber":{"type":"number"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesToken":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesDescription":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItems":{"type":"object","properties":{"token":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesToken"},"description":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItemsPropertiesDescription"}},"required":["token","description"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokens":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokensItems"}},"DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"quoteNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesQuoteNumberFormat"},"nextOrderNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesNextOrderNumber"},"nextQuoteNumber":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesNextQuoteNumber"},"tokens":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses200ContentApplicationJsonSchemaPropertiesTokens"}},"required":["orderNumberFormat","quoteNumberFormat","nextOrderNumber","nextQuoteNumber"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsDocumentNumbersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsDocumentNumbersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsDocumentNumbersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items"}},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1Items":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1Items"}},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesValue":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesLabel":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesLabel"}},"required":["id","value","label"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatuses":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItems"}},"DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderCustomerEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses"},"orderAddressEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses"},"orderStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses200ContentApplicationJsonSchemaPropertiesOrderStatuses"}},"required":["orderCustomerEditableStatuses","orderAddressEditableStatuses","orderStatuses"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat":{"type":"string","minLength":1,"maxLength":191},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items":{"type":"string","minLength":1,"maxLength":120},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items"},"maxItems":200},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"quoteNumberFormat":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderNumberFormat"},"orderCustomerEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses"},"orderAddressEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutRequestBodyContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses"}},"required":["organizationId","tenantId"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1Items"}},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0":{"type":"null"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1Items":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1Items"}},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatusesAnyOf1"}]},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesValue":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesLabel":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItemsPropertiesLabel"}},"required":["id","value","label"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatuses":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatusesItems"}},"DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"orderCustomerEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderCustomerEditableStatuses"},"orderAddressEditableStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderAddressEditableStatuses"},"orderStatuses":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses200ContentApplicationJsonSchemaPropertiesOrderStatuses"}},"required":["orderCustomerEditableStatuses","orderAddressEditableStatuses","orderStatuses"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesSettingsOrderEditingPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesSettingsOrderEditingPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesSettingsOrderEditingPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesGetParameters0Schema":{"type":"number"},"DocPathsSalesShipmentStatusesGetParameters1Schema":{"type":"number"},"DocPathsSalesShipmentStatusesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesGetParameters3Schema":{"type":"string"},"DocPathsSalesShipmentStatusesGetParameters4Schema":{"type":"string"},"DocPathsSalesShipmentStatusesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesShipmentStatusesGetParameters6Schema":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesShipmentStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"}},"required":["organizationId","tenantId","value"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"value":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["organizationId","tenantId","id"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShipmentStatusesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentStatusesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShipmentStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShipmentStatusesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShipmentStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentStatusesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentStatusesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsGetParameters0Schema":{"type":"number"},"DocPathsSalesShipmentsGetParameters1Schema":{"type":"number"},"DocPathsSalesShipmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetParameters3Schema":{"type":"string"},"DocPathsSalesShipmentsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesShipmentsGetParameters5Schema":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodIdAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCodeAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodNameAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodNameAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodNameAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabelAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf1Items":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf1Items"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbers":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbersAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAtAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAtAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAtAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAtAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAtAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAtAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValueAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnitAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNetAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNetAnyOf1":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNet":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNetAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNetAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGrossAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGrossAnyOf1":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGross":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGrossAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGrossAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf01":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf11":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf11"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf01":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items1":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf11":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf1Items1"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsAnyOf11"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNameAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNameAnyOf1":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNameAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumberAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumberAnyOf1":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumberAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1Items":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesId"},"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineId"},"orderLineName":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineName"},"orderLineNumber":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesOrderLineNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesQuantity"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1ItemsPropertiesMetadata"}},"required":["id","orderLineId","quantity"],"additionalProperties":false},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1Items"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf01":{"type":"null"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf11":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1Items"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshot1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf01"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf11"}]},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshotAnyOf1Items"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"order_id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"shipment_number":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber"},"shipping_method_id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodId"},"shipping_method_code":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodCode"},"shipping_method_name":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippingMethodName"},"status_entry_id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"status_label":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusLabel"},"carrier_name":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName"},"tracking_numbers":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackingNumbers"},"shipped_at":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShippedAt"},"delivered_at":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveredAt"},"weight_value":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightValue"},"weight_unit":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWeightUnit"},"declared_value_net":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueNet"},"declared_value_gross":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclaredValueGross"},"currency_code":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"notes":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"custom_values":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"},"customValues":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues1"},"custom_fields":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields1"},"items_snapshot":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshot"},"itemsSnapshot":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemsSnapshot1"},"created_at":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItems"}},"required":["id","order_id","created_at","updated_at"],"additionalProperties":true},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesShipmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierName":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbersItems":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbersItems"}},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShippedAt":{"type":"string","format":"date-time"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveredAt":{"type":"string","format":"date-time"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"type":"number"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"type":"string","maxLength":25},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueNet":{"type":"number"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueGross":{"type":"number"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":4000},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["orderLineId","quantity"],"additionalProperties":false},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"documentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId"},"lineStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId"},"carrierName":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierName"},"trackingNumbers":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbers"},"shippedAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesShippedAt"},"deliveredAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeliveredAt"},"weightValue":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"declaredValueNet":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueNet"},"declaredValueGross":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"notes":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"shipmentAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesItems"}},"required":["organizationId","tenantId","orderId"],"additionalProperties":false},"DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShipmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierName":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbersItems":{"type":"string","maxLength":191},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbersItems"}},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShippedAt":{"type":"string","format":"date-time"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeliveredAt":{"type":"string","format":"date-time"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue":{"type":"number"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit":{"type":"string","maxLength":25},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueNet":{"type":"number"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueGross":{"type":"number"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":4000},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"number"},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderLineId"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["orderLineId","quantity"],"additionalProperties":false},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber"},"shippingMethodId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodId"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusEntryId"},"documentStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentStatusEntryId"},"lineStatusEntryId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesLineStatusEntryId"},"carrierName":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierName"},"trackingNumbers":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesTrackingNumbers"},"shippedAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesShippedAt"},"deliveredAt":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeliveredAt"},"weightValue":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightValue"},"weightUnit":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesWeightUnit"},"declaredValueNet":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueNet"},"declaredValueGross":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclaredValueGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"notes":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"shipmentAddressSnapshot":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomFields"},"items":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesItems"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShipmentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShipmentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShipmentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesTenantId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShipmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShipmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShipmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShipmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShipmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShipmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsGetParameters0Schema":{"type":"number"},"DocPathsSalesShippingMethodsGetParameters1Schema":{"type":"number"},"DocPathsSalesShippingMethodsGetParameters2Schema":{"type":"string"},"DocPathsSalesShippingMethodsGetParameters3Schema":{"type":"string"},"DocPathsSalesShippingMethodsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsGetParameters5Schema":{"type":"string"},"DocPathsSalesShippingMethodsGetParameters6Schema":{"type":"string"},"DocPathsSalesShippingMethodsGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesShippingMethodsGetParameters8Schema":{"type":"boolean"},"DocPathsSalesShippingMethodsGetParameters9Schema":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCodeAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCodeAnyOf1":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCodeAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevelAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevelAnyOf1":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevelAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDaysAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDaysAnyOf1":{"type":"number"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDays":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDaysAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDaysAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseRateNet":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseRateGross":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettings":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettingsAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"carrierCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierCode"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey"},"serviceLevel":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesServiceLevel"},"estimatedTransitDays":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEstimatedTransitDays"},"baseRateNet":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseRateNet"},"baseRateGross":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseRateGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderSettings"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"}},"required":["id","name","code","description","carrierCode","providerKey","serviceLevel","estimatedTransitDays","baseRateNet","baseRateGross","currencyCode","isActive","metadata","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesShippingMethodsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierCode":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderKey":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceLevel":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesEstimatedTransitDays":{"type":"number"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseRateNet":{"type":"number"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseRateGross":{"type":"number"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings":{"type":"object","additionalProperties":true},"DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"carrierCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierCode"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderKey"},"serviceLevel":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceLevel"},"estimatedTransitDays":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesEstimatedTransitDays"},"baseRateNet":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseRateNet"},"baseRateGross":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseRateGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"}},"required":["organizationId","tenantId","name","code"],"additionalProperties":false},"DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShippingMethodsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierCode":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderKey":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceLevel":{"type":"string","maxLength":120},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesEstimatedTransitDays":{"type":"number"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseRateNet":{"type":"number"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseRateGross":{"type":"number"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings":{"type":"object","additionalProperties":true},"DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"description":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"carrierCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierCode"},"providerKey":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderKey"},"serviceLevel":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceLevel"},"estimatedTransitDays":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesEstimatedTransitDays"},"baseRateNet":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseRateNet"},"baseRateGross":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseRateGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"providerSettings":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderSettings"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShippingMethodsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShippingMethodsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShippingMethodsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesShippingMethodsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesShippingMethodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesShippingMethodsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesShippingMethodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesShippingMethodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesShippingMethodsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesShippingMethodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsGetParameters0Schema":{"type":"number"},"DocPathsSalesTagsGetParameters1Schema":{"type":"number"},"DocPathsSalesTagsGetParameters2Schema":{"type":"string"},"DocPathsSalesTagsGetParameters3Schema":{"type":"string"},"DocPathsSalesTagsGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesTagsGetParameters5Schema":{"type":"string"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug":{"type":"string"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"slug":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"organization_id":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"}},"required":["id","slug"],"additionalProperties":false},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSalesTagsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesTagsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"type":"string","minLength":1,"maxLength":80,"pattern":"^[a-z0-9_-]+$"},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":120},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"type":"string","maxLength":30},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":400},"DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"slug":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsSalesTagsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"}},"required":["organizationId","tenantId","slug","label"],"additionalProperties":false},"DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesTagsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesTagsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug":{"type":"string","minLength":1,"maxLength":80,"pattern":"^[a-z0-9_-]+$"},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":120},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesColor":{"type":"string","maxLength":30},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":400},"DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"slug":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesSlug"},"label":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesColor"},"description":{"$ref":"#/components/schemas/DocPathsSalesTagsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"}},"required":["id"],"additionalProperties":false},"DocPathsSalesTagsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesTagsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesTagsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesTagsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesTagsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTagsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTagsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTagsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesGetParameters0Schema":{"type":"number"},"DocPathsSalesTaxRatesGetParameters1Schema":{"type":"number"},"DocPathsSalesTaxRatesGetParameters2Schema":{"type":"string"},"DocPathsSalesTaxRatesGetParameters3Schema":{"type":"string"},"DocPathsSalesTaxRatesGetParameters4Schema":{"type":"string"},"DocPathsSalesTaxRatesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetParameters7Schema":{"type":"string"},"DocPathsSalesTaxRatesGetParameters8Schema":{"type":"string"},"DocPathsSalesTaxRatesGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSalesTaxRatesGetParameters10Schema":{"type":"boolean"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCodeAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCodeAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCodeAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupIdAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryIdAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelIdAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsCompound":{"type":"boolean"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"rate":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate"},"countryCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCode"},"regionCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRegionCode"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode"},"city":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"customerGroupId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerGroupId"},"productCategoryId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryId"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"priority":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"isCompound":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsCompound"},"isDefault":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"startsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customFields":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"}},"required":["id","name","code","rate","countryCode","regionCode","postalCode","city","customerGroupId","productCategoryId","channelId","priority","isCompound","isDefault","startsAt","endsAt","organizationId","tenantId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsSalesTaxRatesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCode":{"type":"string"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionCode":{"type":"string","maxLength":6},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"number"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsCompound":{"type":"boolean"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesStartsAt":{"type":"string","format":"date-time"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesEndsAt":{"type":"string","format":"date-time"},"DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"rate":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRate"},"countryCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCode"},"regionCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRegionCode"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"city":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"customerGroupId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId"},"productCategoryId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryId"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"priority":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"isCompound":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsCompound"},"isDefault":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"startsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostRequestBodyContentApplicationJsonSchemaPropertiesEndsAt"}},"required":["organizationId","tenantId","name","code","rate"],"additionalProperties":false},"DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesTaxRatesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9\\-_]+$","maxLength":120},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"number"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCode":{"type":"string"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionCode":{"type":"string","maxLength":6},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":30},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"number"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsCompound":{"type":"boolean"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesStartsAt":{"type":"string","format":"date-time"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesEndsAt":{"type":"string","format":"date-time"},"DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"rate":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRate"},"countryCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCode"},"regionCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRegionCode"},"postalCode":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"city":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"customerGroupId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerGroupId"},"productCategoryId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryId"},"channelId":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"priority":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"isCompound":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsCompound"},"isDefault":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"},"metadata":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"startsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutRequestBodyContentApplicationJsonSchemaPropertiesEndsAt"}},"required":["id"],"additionalProperties":false},"DocPathsSalesTaxRatesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesTaxRatesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesTaxRatesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesTaxRatesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSalesTaxRatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSalesTaxRatesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSalesTaxRatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesTaxRatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesTaxRatesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesTaxRatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesQuoteNumber":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesCurrencyCode":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFromAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFromAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFromAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntilAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntilAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntilAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatusAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesSubtotalNetAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesSubtotalGrossAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesDiscountTotalAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesTaxTotalAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesGrandTotalNetAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesGrandTotalGrossAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuote":{"type":"object","properties":{"quoteNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesQuoteNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesCurrencyCode"},"validFrom":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidFrom"},"validUntil":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesValidUntil"},"status":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus"},"subtotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesSubtotalNetAmount"},"subtotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesSubtotalGrossAmount"},"discountTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesDiscountTotalAmount"},"taxTotalAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesTaxTotalAmount"},"grandTotalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesGrandTotalNetAmount"},"grandTotalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesGrandTotalGrossAmount"}},"required":["quoteNumber","currencyCode","validFrom","validUntil","status","subtotalNetAmount","subtotalGrossAmount","discountTotalAmount","taxTotalAmount","grandTotalNetAmount","grandTotalGrossAmount"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumberAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumberAnyOf1":{"type":"number"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumberAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNameAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnitAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnitAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnitAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnitAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1":{"type":"object","properties":{"baseUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesBaseUnitCode"},"enteredUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1PropertiesEnteredUnitCode"}},"required":["baseUnitCode","enteredUnitCode"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshotAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabledAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabledAnyOf1":{"type":"boolean"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabled":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabledAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabledAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCodeAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantityAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantityAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantityAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReferenceAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReferenceAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReferenceAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReferenceAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesEnabled"},"referenceUnitCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesReferenceUnitCode"},"baseQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesBaseQuantity"},"grossPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesGrossPerReference"},"netPerReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1PropertiesNetPerReference"}},"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReferenceAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"lineNumber":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesLineNumber"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesKind"},"name":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDescription"},"quantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"quantityUnit":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityUnit"},"normalizedQuantity":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedQuantity"},"normalizedUnit":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNormalizedUnit"},"uomSnapshot":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUomSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCurrencyCode"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"discountAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountAmount"},"discountPercent":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesDiscountPercent"},"taxRate":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"taxAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxAmount"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"},"unitPriceReference":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceReference"}},"required":["lineNumber","kind","name","description","quantity","quantityUnit","normalizedQuantity","normalizedUnit","currencyCode","unitPriceNet","unitPriceGross","discountAmount","discountPercent","taxRate","taxAmount","totalNetAmount","totalGrossAmount"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScopeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScopeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScopeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScopeAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKindAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKindAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKindAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRateAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRateAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRateAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNetAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNetAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNetAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNetAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGrossAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGrossAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGrossAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGrossAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPositionAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPositionAnyOf1":{"type":"number"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPositionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPositionAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineIdAnyOf0":{"type":"null"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineIdAnyOf1"}]},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItems":{"type":"object","properties":{"scope":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesScope"},"kind":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesKind"},"label":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesLabel"},"rate":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesRate"},"amountNet":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountNet"},"amountGross":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesAmountGross"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesCurrencyCode"},"position":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesPosition"},"quoteLineId":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItemsPropertiesQuoteLineId"}},"required":["scope","kind","label","rate","amountNet","amountGross","currencyCode","position","quoteLineId"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustmentsItems"}},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesIsExpired":{"type":"boolean"},"DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"quote":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesQuote"},"lines":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesLines"},"adjustments":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesAdjustments"},"isExpired":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses200ContentApplicationJsonSchemaPropertiesIsExpired"}},"required":["quote","lines","adjustments","isExpired"],"additionalProperties":false},"DocPathsSalesQuotesPublicTokenGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesQuotesPublicTokenGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesQuotesPublicTokenGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsIdGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnNumber":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryIdAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryIdAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReasonAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReasonAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReasonAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotesAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotesAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAtAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAtAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAtAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAtAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAtAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesTotalNetAmount":{"type":"number"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesTotalGrossAmount":{"type":"number"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturn":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesOrderId"},"returnNumber":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnNumber"},"statusEntryId":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatusEntryId"},"status":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesStatus"},"reason":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReason"},"notes":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesNotes"},"returnedAt":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesReturnedAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesUpdatedAt"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnPropertiesTotalGrossAmount"}},"required":["id","orderId","returnNumber","statusEntryId","status","reason","notes","returnedAt","createdAt","updatedAt","totalNetAmount","totalGrossAmount"],"additionalProperties":false},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineIdAnyOf0":{"type":"null"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineIdAnyOf1"}]},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityReturned":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount":{"type":"string"},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesId"},"orderLineId":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesOrderLineId"},"quantityReturned":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantityReturned"},"unitPriceNet":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceNet"},"unitPriceGross":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPriceGross"},"totalNetAmount":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalNetAmount"},"totalGrossAmount":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTotalGrossAmount"}},"required":["id","orderLineId","quantityReturned","unitPriceNet","unitPriceGross","totalNetAmount","totalGrossAmount"],"additionalProperties":false},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLinesItems"}},"DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"return":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesReturn"},"lines":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses200ContentApplicationJsonSchemaPropertiesLines"}},"required":["return","lines"],"additionalProperties":false},"DocPathsSalesReturnsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSalesReturnsIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSalesReturnsIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSalesReturnsIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesLastUpdatedAt":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesId":{"type":"string","enum":["lowStock","reorderCritical","expiringSoon","pastDue","agingReservations","todaysMoves"]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesCount":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterdayAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterdayAnyOf1":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterday":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterdayAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterdayAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesSparklineItems":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesSparkline":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesSparklineItems"}},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesId"},"count":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesCount"},"deltaSinceYesterday":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesDeltaSinceYesterday"},"sparkline":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItemsPropertiesSparkline"}},"required":["id","count","deltaSinceYesterday","sparkline"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpis":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpisItems"}},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesLotNumber":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesSku":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesExpiresAt":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesAvailableQuantity":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesCategory":{"type":"string","enum":["expiringSoon","pastDue"]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesId"},"lotNumber":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesLotNumber"},"sku":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesSku"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesExpiresAt"},"availableQuantity":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesAvailableQuantity"},"category":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItemsPropertiesCategory"}},"required":["id","lotNumber","sku","expiresAt","availableQuantity","category"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLots":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLotsItems"}},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesMonth":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesReceive":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesAllocate":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItems":{"type":"object","properties":{"month":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesMonth"},"receive":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesReceive"},"allocate":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItemsPropertiesAllocate"}},"required":["month","receive","allocate"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrends":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrendsItems"}},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesMovementType":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesQuantity":{"type":"number"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSkuAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSkuAnyOf1":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSkuAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantId":{"type":"string","format":"uuid"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceTypeAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceTypeAnyOf1":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceTypeAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceIdAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceIdAnyOf1":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceIdAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReasonAnyOf0":{"type":"null"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReasonAnyOf1":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReasonAnyOf1"}]},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesLocationLabel":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesPerformedAt":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesId"},"movementType":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesMovementType"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesQuantity"},"variantSku":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantSku"},"variantId":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesVariantId"},"referenceType":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceType"},"referenceId":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReferenceId"},"reason":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesReason"},"locationLabel":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesLocationLabel"},"performedAt":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItemsPropertiesPerformedAt"}},"required":["id","movementType","quantity","variantSku","variantId","referenceType","referenceId","reason","locationLabel","performedAt"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivity":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivityItems"}},"DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"lastUpdatedAt":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesLastUpdatedAt"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesWarehouseId"},"kpis":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesKpis"},"expiryLots":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesExpiryLots"},"monthlyTrends":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesMonthlyTrends"},"recentActivity":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses200ContentApplicationJsonSchemaPropertiesRecentActivity"}},"required":["lastUpdatedAt","warehouseId","kpis","expiryLots","monthlyTrends","recentActivity"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsWmsDashboardOperationalGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsDashboardOperationalGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsDashboardOperationalGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsDashboardOperationalGetResponses404ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsWmsInventoryProfilesGetParameters0Schema":{"type":"number"},"DocPathsWmsInventoryProfilesGetParameters1Schema":{"type":"number"},"DocPathsWmsInventoryProfilesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetParameters4Schema":{"type":"string","enum":["fifo","lifo","fefo"]},"DocPathsWmsInventoryProfilesGetParameters5Schema":{"type":"string"},"DocPathsWmsInventoryProfilesGetParameters6Schema":{"type":"string"},"DocPathsWmsInventoryProfilesGetParameters7Schema":{"type":"string"},"DocPathsWmsInventoryProfilesGetParameters8Schema":{"type":"string"},"DocPathsWmsInventoryProfilesGetParameters9Schema":{"type":"string"},"DocPathsWmsInventoryProfilesGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUomAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUomAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUomAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUomAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLotAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLotAnyOf1":{"type":"boolean"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLotAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLotAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerialAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerialAnyOf1":{"type":"boolean"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerial":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerialAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerialAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpirationAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpirationAnyOf1":{"type":"boolean"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpiration":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpirationAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpirationAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategyAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategyAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategy":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategyAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategyAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1OneOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPoint":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPointAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1OneOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStock":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStockAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"catalog_product_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"catalog_variant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId"},"product_title":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle"},"product_sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku"},"variant_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName"},"variant_sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku"},"default_uom":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultUom"},"track_lot":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackLot"},"track_serial":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackSerial"},"track_expiration":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTrackExpiration"},"default_strategy":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultStrategy"},"reorder_point":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReorderPoint"},"safety_stock":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSafetyStock"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsInventoryProfilesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUom":{"type":"string","minLength":1,"maxLength":32},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackLot":{"type":"boolean"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackSerial":{"type":"boolean"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackExpiration":{"type":"boolean"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultStrategy":{"type":"string","enum":["fifo","lifo","fefo"]},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint":{"type":"number"},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"defaultUom":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultUom"},"trackLot":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackLot"},"trackSerial":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackSerial"},"trackExpiration":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesTrackExpiration"},"defaultStrategy":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultStrategy"},"reorderPoint":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint"},"safetyStock":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","catalogProductId","defaultUom","defaultStrategy"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUom":{"type":"string","minLength":1,"maxLength":32},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackLot":{"type":"boolean"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackSerial":{"type":"boolean"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackExpiration":{"type":"boolean"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultStrategy":{"type":"string","enum":["fifo","lifo","fefo"]},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint":{"type":"number"},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"defaultUom":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultUom"},"trackLot":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackLot"},"trackSerial":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackSerial"},"trackExpiration":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesTrackExpiration"},"defaultStrategy":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultStrategy"},"reorderPoint":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint"},"safetyStock":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesReorderPoint"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryProfilesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryProfilesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsInventoryProfilesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryProfilesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsInventoryProfilesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryProfilesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryProfilesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryProfilesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesDelta":{"type":"number"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode":{"type":"string","maxLength":80},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceTypeAllOf0":{"type":"string","enum":["po","so","transfer","manual","qc","rma"]},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceTypeAllOf0"}],"default":"manual"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesLocationId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"delta":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesDelta"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"reasonCode":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode"},"referenceType":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType"},"referenceId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId"},"performedBy":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy"},"performedAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","locationId","catalogVariantId","delta","reason","referenceId","performedBy"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchemaPropertiesMovementId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"movementId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses200ContentApplicationJsonSchemaPropertiesMovementId"}},"required":["ok","movementId"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAdjustPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAdjustPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAdjustPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAdjustPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAdjustPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAdjustPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAdjustPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesReservationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"reservationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesReservationId"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","reservationId"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchemaPropertiesAllocationState":{"type":"string","enum":["allocated"]},"DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"allocationState":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses200ContentApplicationJsonSchemaPropertiesAllocationState"}},"required":["ok","allocationState"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAllocatePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAllocatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAllocatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAllocatePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryAllocatePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryAllocatePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryAllocatePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryBalancesGetParameters0Schema":{"type":"number"},"DocPathsWmsInventoryBalancesGetParameters1Schema":{"type":"number"},"DocPathsWmsInventoryBalancesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetParameters6Schema":{"type":"string","maxLength":120},"DocPathsWmsInventoryBalancesGetParameters7Schema":{"type":"string","enum":["belowReorder","belowSafety"]},"DocPathsWmsInventoryBalancesGetParameters8Schema":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCodeAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationTypeAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1OneOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHand":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHandAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1OneOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReserved":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReservedAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1OneOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocated":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocatedAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailableAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailableAnyOf1":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailable":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailableAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailableAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"warehouse_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId"},"warehouse_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName"},"warehouse_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode"},"location_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationId"},"location_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationCode"},"location_type":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationType"},"catalog_variant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId"},"catalog_product_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"variant_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName"},"variant_sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku"},"lot_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId"},"serial_number":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber"},"quantity_on_hand":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityOnHand"},"quantity_reserved":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityReserved"},"quantity_allocated":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAllocated"},"quantity_available":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAvailable"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsInventoryBalancesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryBalancesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryBalancesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryBalancesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesCountedQuantity":{"type":"number"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesAutoAdjustAllOf0":{"type":"boolean"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesAutoAdjust":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesAutoAdjustAllOf0"}],"default":true},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesLocationId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"countedQuantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesCountedQuantity"},"autoAdjust":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesAutoAdjust"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"referenceId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId"},"performedBy":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy"},"performedAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","locationId","catalogVariantId","countedQuantity","reason","referenceId","performedBy"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesAdjustmentDelta":{"type":"string"},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementIdAnyOf1"}]},"DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"adjustmentDelta":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesAdjustmentDelta"},"movementId":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses200ContentApplicationJsonSchemaPropertiesMovementId"}},"required":["ok","adjustmentDelta","movementId"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryCycleCountPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryCycleCountPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryCycleCountPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryCycleCountPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryCycleCountPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryCycleCountPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesImportBatchId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesReasonAllOf0":{"type":"string","minLength":1,"maxLength":500},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesReasonAllOf0"}],"default":"CSV import inventory receipt"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesContinueOnError":{"type":"boolean"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0":{"type":"string","enum":["additive","reconcile"]},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0"}],"default":"additive"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesRowNumber":{"type":"number"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesQuantity":{"type":"number"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDelta":{"type":"number"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"rowNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesRowNumber"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseId"},"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCatalogVariantId"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesQuantity"},"delta":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDelta"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSerialNumber"}},"required":["rowNumber","warehouseId","locationId","catalogVariantId","quantity","delta"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"minItems":1,"maxItems":5000},"DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"importBatchId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesImportBatchId"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"continueOnError":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesContinueOnError"},"mode":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesMode"},"rows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["organizationId","tenantId","importBatchId","rows"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesImportBatchId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesApplied":{"type":"number"},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesSkipped":{"type":"number"},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesFailed":{"type":"number"},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummary":{"type":"object","properties":{"applied":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesApplied"},"skipped":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesSkipped"},"failed":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesFailed"}},"required":["applied","skipped","failed"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"importBatchId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesImportBatchId"},"summary":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses200ContentApplicationJsonSchemaPropertiesSummary"}},"required":["ok","importBatchId","summary"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportApplyPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportApplyPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportApplyPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportApplyPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportApplyPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportApplyPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportTemplateGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsWmsInventoryImportTemplateGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportTemplateGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportTemplateGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportTemplateGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportTemplateGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportTemplateGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesImportBatchId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesSkipDuplicates":{"type":"boolean"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0":{"type":"string","enum":["additive","reconcile"]},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0"}],"default":"additive"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseCode":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationCode":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSku":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesQuantity":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotNumber":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSerialNumber":{"type":"string"},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"warehouseCode":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseCode"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarehouseId"},"locationCode":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationCode"},"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLocationId"},"sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSku"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCatalogVariantId"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesQuantity"},"lotNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotNumber"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSerialNumber"}},"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"minItems":1,"maxItems":5000},"DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"importBatchId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesImportBatchId"},"skipDuplicates":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesSkipDuplicates"},"mode":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesMode"},"rows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["organizationId","tenantId","rows"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesImportBatchId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesTotalRows":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesValidRows":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesErrorRows":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesWarningRows":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesSkipRows":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummary":{"type":"object","properties":{"totalRows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesTotalRows"},"validRows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesValidRows"},"errorRows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesErrorRows"},"warningRows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesWarningRows"},"skipRows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummaryPropertiesSkipRows"}},"required":["totalRows","validRows","errorRows","warningRows","skipRows"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesRowNumber":{"type":"number"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStatus":{"type":"string","enum":["valid","error","warning","skip"]},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesErrorsItems":{"type":"string"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesErrorsItems"}},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarningsItems":{"type":"string"},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarnings":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarningsItems"}},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"rowNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesRowNumber"},"status":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStatus"},"errors":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesErrors"},"warnings":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItemsPropertiesWarnings"}},"required":["rowNumber","status","errors","warnings"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRowsItems"}},"DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"importBatchId":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesImportBatchId"},"summary":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesSummary"},"rows":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses200ContentApplicationJsonSchemaPropertiesRows"}},"required":["ok","importBatchId","summary","rows"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportValidatePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportValidatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryImportValidatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryImportValidatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryImportValidatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesFromLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesToLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["receipt","putaway","pick","pack","ship","adjust","transfer","cycle_count","return_receive"]},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode":{"type":"string","maxLength":80},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceTypeAllOf0":{"type":"string","enum":["po","so","transfer","manual","qc","rma"]},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType":{"allOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceTypeAllOf0"}],"default":"manual"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"fromLocationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesFromLocationId"},"toLocationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesToLocationId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"type":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesType"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"reasonCode":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode"},"referenceType":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType"},"referenceId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId"},"performedBy":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy"},"performedAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","fromLocationId","toLocationId","catalogVariantId","quantity","reason","referenceId","performedBy"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchemaPropertiesMovementId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"movementId":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses200ContentApplicationJsonSchemaPropertiesMovementId"}},"required":["ok","movementId"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovementsGetParameters0Schema":{"type":"number"},"DocPathsWmsInventoryMovementsGetParameters1Schema":{"type":"number"},"DocPathsWmsInventoryMovementsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetParameters6Schema":{"type":"string","enum":["po","so","transfer","manual","qc","rma"]},"DocPathsWmsInventoryMovementsGetParameters7Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetParameters8Schema":{"type":"string","enum":["receipt","putaway","pick","pack","ship","adjust","transfer","cycle_count","return_receive"]},"DocPathsWmsInventoryMovementsGetParameters9Schema":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCodeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromTypeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCodeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToTypeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceTypeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceIdAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedByAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedByAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedBy":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedByAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedByAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAtAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCodeAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"warehouse_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId"},"warehouse_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName"},"warehouse_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode"},"location_from_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromId"},"location_from_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromCode"},"location_from_type":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationFromType"},"location_to_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToId"},"location_to_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToCode"},"location_to_type":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLocationToType"},"catalog_variant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId"},"catalog_product_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"variant_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName"},"variant_sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku"},"lot_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId"},"serial_number":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"type":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"reference_type":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceType"},"reference_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceId"},"performed_by":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedBy"},"performed_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPerformedAt"},"received_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReason"},"reason_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReasonCode"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsInventoryMovementsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryMovementsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryMovementsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryMovementsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLotNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType":{"type":"string","enum":["po","so","transfer","manual","qc","rma"]},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":500},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLocationId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLotId"},"lotNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLotNumber"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"referenceType":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceType"},"referenceId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReferenceId"},"performedBy":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedBy"},"receivedAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReceivedAt"},"performedAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesPerformedAt"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","locationId","catalogVariantId","quantity","referenceType","referenceId","performedBy"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchemaPropertiesMovementId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"movementId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses200ContentApplicationJsonSchemaPropertiesMovementId"}},"required":["ok","movementId"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReceivePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReceivePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReceivePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReceivePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReceivePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReceivePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReservationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode":{"type":"string","maxLength":80},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"reservationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReservationId"},"reason":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReason"},"reasonCode":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesReasonCode"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","reservationId","reason"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryReleasePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReleasePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReleasePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReleasePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReleasePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReleasePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReleasePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservationsGetParameters0Schema":{"type":"number"},"DocPathsWmsInventoryReservationsGetParameters1Schema":{"type":"number"},"DocPathsWmsInventoryReservationsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetParameters5Schema":{"type":"string","enum":["order","transfer","manual"]},"DocPathsWmsInventoryReservationsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetParameters7Schema":{"type":"string","enum":["active","released","fulfilled"]},"DocPathsWmsInventoryReservationsGetParameters8Schema":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantNameAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSkuAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumberAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf0":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf1":{"type":"number"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1OneOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantityAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTypeAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTypeAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTypeAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceIdAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabelAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabelAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabelAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"warehouse_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId"},"warehouse_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName"},"warehouse_code":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode"},"catalog_variant_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId"},"catalog_product_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"variant_name":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantName"},"variant_sku":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantSku"},"lot_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotId"},"serial_number":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"source_type":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType"},"source_id":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceId"},"source_label":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceLabel"},"expires_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt"},"status":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsInventoryReservationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesLotId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","maxLength":120},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity":{"type":"number"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSourceType":{"type":"string","enum":["order","transfer","manual"]},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string","format":"date-time"},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesStrategy":{"type":"string","enum":["fifo","lifo","fefo"]},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesLotId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesQuantity"},"sourceType":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSourceType"},"sourceId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt"},"strategy":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesStrategy"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","catalogVariantId","quantity","sourceType","sourceId"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesReservationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotIdAnyOf0":{"type":"null"},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotIdAnyOf1"}]},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesQuantity":{"type":"string"},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItems":{"type":"object","properties":{"locationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLocationId"},"lotId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesLotId"},"quantity":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItemsPropertiesQuantity"}},"required":["locationId","lotId","quantity"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBuckets":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBucketsItems"}},"DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"reservationId":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesReservationId"},"allocatedBuckets":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses200ContentApplicationJsonSchemaPropertiesAllocatedBuckets"}},"required":["ok","reservationId","allocatedBuckets"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsInventoryReservePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsInventoryReservePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsInventoryReservePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsGetParameters0Schema":{"type":"number"},"DocPathsWmsLocationsGetParameters1Schema":{"type":"number"},"DocPathsWmsLocationsGetParameters2Schema":{"type":"string"},"DocPathsWmsLocationsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetParameters5Schema":{"type":"string","enum":["zone","aisle","rack","bin","slot","dock","staging"]},"DocPathsWmsLocationsGetParameters6Schema":{"type":"string"},"DocPathsWmsLocationsGetParameters7Schema":{"type":"string"},"DocPathsWmsLocationsGetParameters8Schema":{"type":"string"},"DocPathsWmsLocationsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1OneOf0":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1OneOf1":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1OneOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnits":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnitsAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1OneOf0":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1OneOf1":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1OneOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1OneOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeight":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeightAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"warehouse_id":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId"},"warehouse_name":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName"},"warehouse_code":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode"},"parent_id":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId"},"code":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"type":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"is_active":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"capacity_units":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityUnits"},"capacity_weight":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCapacityWeight"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsLocationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["zone","aisle","rack","bin","slot","dock","staging"]},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits":{"type":"number"},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesConstraints":{"type":"object","additionalProperties":true},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"code":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"type":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"parentId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"isActive":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"capacityUnits":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits"},"capacityWeight":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits"},"constraints":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesConstraints"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","code","type"],"additionalProperties":false},"DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLocationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["zone","aisle","rack","bin","slot","dock","staging"]},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits":{"type":"number"},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesConstraints":{"type":"object","additionalProperties":true},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"code":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"type":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesType"},"parentId":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"isActive":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"capacityUnits":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits"},"capacityWeight":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesCapacityUnits"},"constraints":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesConstraints"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLocationsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsLocationsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsLocationsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsLocationsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLocationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsLocationsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsLocationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLocationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLocationsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLocationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsGetParameters0Schema":{"type":"number"},"DocPathsWmsLotsGetParameters1Schema":{"type":"number"},"DocPathsWmsLotsGetParameters2Schema":{"type":"string"},"DocPathsWmsLotsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetParameters4Schema":{"type":"string","enum":["available","hold","quarantine","expired"]},"DocPathsWmsLotsGetParameters5Schema":{"type":"string","enum":["expiringSoon","pastDue"]},"DocPathsWmsLotsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetParameters7Schema":{"type":"string"},"DocPathsWmsLotsGetParameters8Schema":{"type":"string"},"DocPathsWmsLotsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantIdAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumberAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumberAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumberAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumberAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumberAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumberAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAtAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAtAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAtAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAtAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAtAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAtAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1":{"type":"object","additionalProperties":true},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadataAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"catalog_variant_id":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogVariantId"},"sku":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"lot_number":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLotNumber"},"batch_number":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchNumber"},"manufactured_at":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturedAt"},"best_before_at":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBestBeforeAt"},"expires_at":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt"},"status":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMetadata"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsLotsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsLotsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesLotNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesBatchNumber":{"type":"string","maxLength":120},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturedAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesBestBeforeAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["available","hold","quarantine","expired"]},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"sku":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesSku"},"lotNumber":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesLotNumber"},"batchNumber":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesBatchNumber"},"manufacturedAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturedAt"},"bestBeforeAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesBestBeforeAt"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt"},"status":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsLotsPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","catalogVariantId","sku","lotNumber"],"additionalProperties":false},"DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsWmsLotsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLotsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":500},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId":{"type":"string","format":"uuid"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesLotNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesBatchNumber":{"type":"string","maxLength":120},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturedAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesBestBeforeAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string","format":"date-time"},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["available","hold","quarantine","expired"]},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"notes":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"organizationId":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"catalogVariantId":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogVariantId"},"sku":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesSku"},"lotNumber":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesLotNumber"},"batchNumber":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesBatchNumber"},"manufacturedAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturedAt"},"bestBeforeAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesBestBeforeAt"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt"},"status":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsLotsPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLotsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsLotsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsLotsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsLotsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsLotsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsLotsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsLotsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsLotsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsLotsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsLotsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":500},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesSalesOrderId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"notes":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"},"salesOrderId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesSalesOrderId"}},"required":["organizationId","tenantId","warehouseId","salesOrderId"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesAssignmentId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"assignmentId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesAssignmentId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesWarehouseId"}},"required":["ok","assignmentId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignmentId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses201ContentApplicationJsonSchemaPropertiesWarehouseId"}},"required":["ok","assignmentId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersAssignWarehousePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersAssignWarehousePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersAssignWarehousePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesSalesOrderId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"salesOrderId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesSalesOrderId"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","salesOrderId"],"additionalProperties":false},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersUnassignWarehousePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersUnassignWarehousePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesGetParameters0Schema":{"type":"number"},"DocPathsWmsWarehousesGetParameters1Schema":{"type":"number"},"DocPathsWmsWarehousesGetParameters2Schema":{"type":"string"},"DocPathsWmsWarehousesGetParameters3Schema":{"type":"string"},"DocPathsWmsWarehousesGetParameters4Schema":{"type":"string"},"DocPathsWmsWarehousesGetParameters5Schema":{"type":"string"},"DocPathsWmsWarehousesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1":{"type":"boolean"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActiveAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf1":{"type":"boolean"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimaryAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezoneAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"is_active":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"is_primary":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPrimary"},"address_line1":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1"},"city":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"postal_code":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry"},"timezone":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"additionalProperties":false},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsWarehousesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":80},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":150},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":40},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":120},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"isActive":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"isPrimary":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"},"addressLine1":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"city":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"postalCode":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"timezone":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","name","code"],"additionalProperties":false},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"updatedAt":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","updatedAt"],"additionalProperties":false},"DocPathsWmsWarehousesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":80},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary":{"type":"boolean"},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":150},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":40},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string","maxLength":120},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string","maxLength":120},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"name":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"isActive":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"isPrimary":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesIsPrimary"},"addressLine1":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"city":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"postalCode":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"timezone":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsWmsWarehousesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsWarehousesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsWarehousesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsWarehousesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsWarehousesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsWarehousesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsWarehousesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsWarehousesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsWarehousesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsWarehousesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesGetParameters0Schema":{"type":"number"},"DocPathsWmsZonesGetParameters1Schema":{"type":"number"},"DocPathsWmsZonesGetParameters2Schema":{"type":"string"},"DocPathsWmsZonesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsWmsZonesGetParameters4Schema":{"type":"string"},"DocPathsWmsZonesGetParameters5Schema":{"type":"string"},"DocPathsWmsZonesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseIdAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1":{"type":"number"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriorityAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValuesAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKey":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabelAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesValue":{},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKindAnyOf0":{"type":"null"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKindAnyOf1":{"type":"string"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKindAnyOf1"}]},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesMulti":{"type":"boolean"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKey"},"label":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesLabel"},"value":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesValue"},"kind":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesKind"},"multi":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItemsPropertiesMulti"}},"required":["key","label","value","kind","multi"],"additionalProperties":false},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFieldsItems"}},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"organization_id":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenant_id":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"warehouse_id":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseId"},"warehouse_name":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseName"},"warehouse_code":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarehouseCode"},"code":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"priority":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"created_at":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"customValues":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomValues"},"customFields":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomFields"}},"additionalProperties":false},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsWmsZonesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWmsZonesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":80},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"number"},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"code":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"priority":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsZonesPostRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId","code","name"],"additionalProperties":false},"DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsWmsZonesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsZonesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":80},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"number"},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"code":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"priority":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsZonesPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["id"],"additionalProperties":false},"DocPathsWmsZonesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsZonesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsZonesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsZonesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWmsZonesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsZonesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsZonesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsZonesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsZonesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsZonesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostParameters0Schema":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdReRunReservationPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetParameters0Schema":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf0":{"type":"null"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesSalesOrderId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseNameAnyOf0":{"type":"null"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseNameAnyOf1":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseNameAnyOf1"}]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCodeAnyOf0":{"type":"null"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCodeAnyOf1":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCodeAnyOf1"}]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotesAnyOf0":{"type":"null"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotesAnyOf1":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotesAnyOf1"}]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedByAnyOf0":{"type":"null"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedByAnyOf1":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedBy":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedByAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedByAnyOf1"}]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesId"},"salesOrderId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesSalesOrderId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseId"},"warehouseName":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseName"},"warehouseCode":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesWarehouseCode"},"notes":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesNotes"},"assignedBy":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1PropertiesAssignedBy"}},"required":["id","salesOrderId","warehouseId","warehouseName","warehouseCode","notes","assignedBy"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignmentAnyOf1"}]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"assignment":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses200ContentApplicationJsonSchemaPropertiesAssignment"}},"required":["assignment"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutParameters0Schema":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":500},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"notes":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesAssignmentId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"assignmentId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesAssignmentId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses200ContentApplicationJsonSchemaPropertiesWarehouseId"}},"required":["ok","assignmentId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesAssignmentId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignmentId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesAssignmentId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses201ContentApplicationJsonSchemaPropertiesWarehouseId"}},"required":["ok","assignmentId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPutResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchParameters0Schema":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":500},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","additionalProperties":true},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"notes":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"metadata":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchRequestBodyContentApplicationJsonSchemaPropertiesMetadata"}},"required":["organizationId","tenantId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesAssignmentId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesOk"},"assignmentId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesAssignmentId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses200ContentApplicationJsonSchemaPropertiesWarehouseId"}},"required":["ok","assignmentId","warehouseId"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteParameters0Schema":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWmsSalesOrdersSalesOrderIdWarehouseAssignmentDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesOptionsGetParameters0Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetParameters1Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetParameters2Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetParameters3Schema":{"type":"string","enum":["true","false"]},"DocPathsCurrenciesCurrenciesOptionsGetParameters4Schema":{"type":"number"},"DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesOptionsGetResponses400ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsCurrenciesCurrenciesOptionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses400ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesOptionsGetResponses401ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsCurrenciesCurrenciesOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses401ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesGetParameters0Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesGetParameters1Schema":{"type":"number"},"DocPathsCurrenciesCurrenciesGetParameters2Schema":{"type":"number"},"DocPathsCurrenciesCurrenciesGetParameters3Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesGetParameters4Schema":{"type":"string","enum":["code","name","createdAt","updatedAt"]},"DocPathsCurrenciesCurrenciesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCurrenciesCurrenciesGetParameters6Schema":{"type":"string","enum":["true","false"]},"DocPathsCurrenciesCurrenciesGetParameters7Schema":{"type":"string","enum":["true","false"]},"DocPathsCurrenciesCurrenciesGetParameters8Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesGetParameters9Schema":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbolAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbolAnyOf1":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbol":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbolAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbolAnyOf1"}]},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalPlaces":{"type":"number"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparatorAnyOf1":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparatorAnyOf1":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsBase":{"type":"boolean"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"symbol":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSymbol"},"decimalPlaces":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalPlaces"},"thousandsSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThousandsSeparator"},"decimalSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDecimalSeparator"},"isBase":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsBase"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"}},"required":["id","code","name","symbol","decimalPlaces","thousandsSeparator","decimalSeparator","isBase","isActive","createdAt","updatedAt","organizationId","tenantId"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf1":{"type":"string","maxLength":10},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbol":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf1"}]},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalPlaces":{"type":"number"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf1":{"type":"string","maxLength":5},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf1":{"type":"string","maxLength":5},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsBase":{"type":"boolean"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"code":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"symbol":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesSymbol"},"decimalPlaces":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalPlaces"},"thousandsSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparator"},"decimalSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparator"},"isBase":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsBase"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["organizationId","tenantId","code","name"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf1":{"type":"string","maxLength":10},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbol":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbolAnyOf1"}]},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalPlaces":{"type":"number"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf1":{"type":"string","maxLength":5},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf0":{"type":"null"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf1":{"type":"string","maxLength":5},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparator":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparatorAnyOf1"}]},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsBase":{"type":"boolean"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"code":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"symbol":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesSymbol"},"decimalPlaces":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalPlaces"},"thousandsSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesThousandsSeparator"},"decimalSeparator":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesDecimalSeparator"},"isBase":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsBase"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCurrenciesCurrenciesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesCurrenciesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCurrenciesCurrenciesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesCurrenciesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesCurrenciesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesCurrenciesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesGetParameters1Schema":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetParameters2Schema":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetParameters3Schema":{"type":"string","enum":["fromCurrencyCode","toCurrencyCode","date","createdAt","updatedAt"]},"DocPathsCurrenciesExchangeRatesGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCurrenciesExchangeRatesGetParameters5Schema":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetParameters6Schema":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetParameters7Schema":{"type":"string","enum":["true","false"]},"DocPathsCurrenciesExchangeRatesGetParameters8Schema":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetParameters9Schema":{"type":"string","enum":["buy","sell"]},"DocPathsCurrenciesExchangeRatesGetParameters10Schema":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFromCurrencyCode":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToCurrencyCode":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDate":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeAnyOf1"}]},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"fromCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFromCurrencyCode"},"toCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToCurrencyCode"},"rate":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate"},"date":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDate"},"source":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"type":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"}},"required":["id","fromCurrencyCode","toCurrencyCode","rate","date","source","type","isActive","createdAt","updatedAt","organizationId","tenantId"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"string","pattern":"^\\d+(\\.\\d{1,8})?$"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesDate":{},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesSource":{},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf1":{"type":"string","enum":["buy","sell"]},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf1"}]},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"fromCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode"},"toCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode"},"rate":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesRate"},"date":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesDate"},"source":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesSource"},"type":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["organizationId","tenantId","fromCurrencyCode","toCurrencyCode","rate","date","source"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"type":"string"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRate":{"type":"string","pattern":"^\\d+(\\.\\d{1,8})?$"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesDate":{},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesSource":{},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf0":{"type":"null"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf1":{"type":"string","enum":["buy","sell"]},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTypeAnyOf1"}]},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"fromCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode"},"toCurrencyCode":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesFromCurrencyCode"},"rate":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesRate"},"date":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesDate"},"source":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesSource"},"type":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesType"},"isActive":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCurrenciesExchangeRatesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesExchangeRatesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCurrenciesExchangeRatesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesExchangeRatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesExchangeRatesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesExchangeRatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesProvider":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesIsEnabled":{"type":"boolean"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTimeAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTimeAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTimeAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAtAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAtAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAtAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatusAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatusAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatusAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessageAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessageAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessageAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCountAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCountAnyOf1":{"type":"number"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCountAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfigAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfigAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfigAnyOf1"}]},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesTenantId"},"provider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesProvider"},"isEnabled":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesIsEnabled"},"syncTime":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesSyncTime"},"lastSyncAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncAt"},"lastSyncStatus":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncStatus"},"lastSyncMessage":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncMessage"},"lastSyncCount":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesLastSyncCount"},"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesConfig"},"createdAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItemsPropertiesUpdatedAt"}},"required":["id","organizationId","tenantId","provider","isEnabled","syncTime","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigs":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigsItems"}},"DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"configs":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses200ContentApplicationJsonSchemaPropertiesConfigs"}},"required":["configs"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesProvider":{"type":"string","enum":["NBP","Raiffeisen Bank Polska","Custom"]},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabledAllOf0":{"type":"boolean"},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled":{"allOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabledAllOf0"}],"default":false},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf1":{"type":"string","pattern":"^([01]\\d|2[0-3]):([0-5]\\d)$"},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"provider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesProvider"},"isEnabled":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled"},"syncTime":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesSyncTime"},"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostRequestBodyContentApplicationJsonSchemaPropertiesConfig"}},"required":["provider"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesProvider":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesIsEnabled":{"type":"boolean"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf1":{"type":"number"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesCreatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesUpdatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfig":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesTenantId"},"provider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesProvider"},"isEnabled":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesIsEnabled"},"syncTime":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTime"},"lastSyncAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAt"},"lastSyncStatus":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatus"},"lastSyncMessage":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessage"},"lastSyncCount":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCount"},"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesConfig"},"createdAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfigPropertiesUpdatedAt"}},"required":["id","organizationId","tenantId","provider","isEnabled","syncTime","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses201ContentApplicationJsonSchemaPropertiesConfig"}},"required":["config"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled":{"type":"boolean"},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf1":{"type":"string","pattern":"^([01]\\d|2[0-3]):([0-5]\\d)$"},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTimeAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"isEnabled":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled"},"syncTime":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesSyncTime"},"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesConfig"},"id":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesOrganizationId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesProvider":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesIsEnabled":{"type":"boolean"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTime":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTimeAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAtAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatusAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf1":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessageAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf1":{"type":"number"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCountAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf0":{"type":"null"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf1":{"type":"object","additionalProperties":true},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfig":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf0"},{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfigAnyOf1"}]},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesCreatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesUpdatedAt":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfig":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesId"},"organizationId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesTenantId"},"provider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesProvider"},"isEnabled":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesIsEnabled"},"syncTime":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesSyncTime"},"lastSyncAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncAt"},"lastSyncStatus":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncStatus"},"lastSyncMessage":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncMessage"},"lastSyncCount":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesLastSyncCount"},"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesConfig"},"createdAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfigPropertiesUpdatedAt"}},"required":["id","organizationId","tenantId","provider","isEnabled","syncTime","createdAt","updatedAt"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"config":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses200ContentApplicationJsonSchemaPropertiesConfig"}},"required":["config"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCurrenciesFetchConfigsDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess":{"type":"boolean","enum":[true]},"DocPathsCurrenciesFetchConfigsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"success":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess"}},"required":["success"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchConfigsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchConfigsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchConfigsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesDate":{"type":"string","format":"datetime"},"DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProvidersItems":{"type":"string"},"DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProviders":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProvidersItems"}},"DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"date":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesDate"},"providers":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostRequestBodyContentApplicationJsonSchemaPropertiesProviders"}},"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesTotalFetched":{"type":"number"},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesCount":{"type":"number"},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrorsItems":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrorsItems"}},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalProperties":{"type":"object","properties":{"count":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesCount"},"errors":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrors"}},"required":["count"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProvider":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProviderAdditionalProperties"}},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItems":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesErrorsItems"}},"DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"totalFetched":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesTotalFetched"},"byProvider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesByProvider"},"errors":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses200ContentApplicationJsonSchemaPropertiesErrors"}},"required":["totalFetched","byProvider","errors"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesTotalFetched":{"type":"number"},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesCount":{"type":"number"},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrorsItems":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrorsItems"}},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalProperties":{"type":"object","properties":{"count":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesCount"},"errors":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalPropertiesPropertiesErrors"}},"required":["count"],"additionalProperties":false},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProvider":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProviderAdditionalProperties"}},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesErrorsItems":{"type":"string"},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesErrors":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesErrorsItems"}},"DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"totalFetched":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesTotalFetched"},"byProvider":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesByProvider"},"errors":{"$ref":"#/components/schemas/DocPathsCurrenciesFetchRatesPostResponses500ContentApplicationJsonSchemaPropertiesErrors"}},"required":["totalFetched","byProvider","errors"],"additionalProperties":false},"DocPathsDictionariesGetParameters0Schema":{"type":"string","enum":["true","false"]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDictionariesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9][a-z0-9_-]*$"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode"}},"required":["key","name"],"additionalProperties":false},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"}},"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesPosition"}},"required":["id","position"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItems"},"minItems":1},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entries":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntries"}},"required":["entries"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesGetParameters1Schema":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetParameters2Schema":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesLimit":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesOffset":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesHasMore":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesSortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"limit":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesLimit"},"offset":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesOffset"},"hasMore":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesHasMore"},"sortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesSortMode"}},"required":["items","total","limit","offset","hasMore","sortMode"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesPosition"}},"required":["value"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchemaPropertiesEntryId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entryId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchemaPropertiesEntryId"}},"required":["entryId"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9][a-z0-9_-]*$"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode"}},"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["override","default","fallback","missing"]},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesToggleId":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"},"source":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesSource"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesToggleId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"}},"required":["enabled","source","toggleId","identifier","tenantId"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckJsonGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesValueType":{"type":"string","enum":["json"]},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesValue":{},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["override","default","fallback","missing"]},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesToggleId":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"valueType":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesValueType"},"value":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesValue"},"source":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesSource"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesToggleId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"}},"required":["valueType","value","source","toggleId","identifier","tenantId"],"additionalProperties":true},"DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckNumberGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesValueType":{"type":"string","enum":["number"]},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"number"},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["override","default","fallback","missing"]},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesToggleId":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"valueType":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesValueType"},"value":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesValue"},"source":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesSource"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesToggleId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"}},"required":["valueType","value","source","toggleId","identifier","tenantId"],"additionalProperties":true},"DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckStringGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesValueType":{"type":"string","enum":["string"]},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["override","default","fallback","missing"]},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesToggleId":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"valueType":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesValueType"},"value":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesValue"},"source":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesSource"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesToggleId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"}},"required":["valueType","value","source","toggleId","identifier","tenantId"],"additionalProperties":true},"DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalGetParameters0Schema":{"type":"number"},"DocPathsFeatureTogglesGlobalGetParameters1Schema":{"type":"number"},"DocPathsFeatureTogglesGlobalGetParameters2Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalGetParameters3Schema":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalGetParameters4Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalGetParameters5Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalGetParameters6Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalGetParameters7Schema":{"type":"string","enum":["id","category","identifier","name","createdAt","updatedAt","type"]},"DocPathsFeatureTogglesGlobalGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1"}]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValueAnyOf0"},{}]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdentifier"},"name":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory"},"type":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"defaultValue":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultValue"},"createdAt":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","identifier","name","type"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string","minLength":1,"pattern":"^[a-z][a-z0-9_.-]*$"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf1"}]},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0"},{}]},"DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesIdentifier"},"name":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesCategory"},"type":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"defaultValue":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultValue"}},"required":["identifier","name","type"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string","minLength":1,"pattern":"^[a-z][a-z0-9_.-]*$"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryAnyOf1"}]},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0"},{}]},"DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesIdentifier"},"name":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesCategory"},"type":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesType"},"defaultValue":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultValue"}},"required":["id"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesOverridesGetParameters1Schema":{"type":"string"},"DocPathsFeatureTogglesOverridesGetParameters2Schema":{"type":"string"},"DocPathsFeatureTogglesOverridesGetParameters3Schema":{"type":"string","enum":["identifier","name","category"]},"DocPathsFeatureTogglesOverridesGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsFeatureTogglesOverridesGetParameters5Schema":{"type":"number"},"DocPathsFeatureTogglesOverridesGetParameters6Schema":{"type":"number"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdOneOf0":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdOneOf1":{"type":"string","enum":[""]},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"oneOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdOneOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdOneOf1"}]},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToggleId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsOverride":{"type":"boolean"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesToggleId"},"tenantName":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantName"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdentifier"},"name":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"category":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory"},"isOverride":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsOverride"}},"required":["id","toggleId","tenantName","tenantId","identifier","name","category","isOverride"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin":{"type":"boolean"},"DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses200ContentApplicationJsonSchemaPropertiesIsSuperAdmin"}},"required":["items","total","page","pageSize","totalPages","isSuperAdmin"],"additionalProperties":false},"DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesToggleId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesIsOverride":{"type":"boolean"},"DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesOverrideValue":{},"DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesToggleId"},"isOverride":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesIsOverride"},"overrideValue":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutRequestBodyContentApplicationJsonSchemaPropertiesOverrideValue"}},"required":["toggleId","isOverride"],"additionalProperties":false},"DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleIdAnyOf0":{"type":"null"},"DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleIdAnyOf1"}]},"DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"overrideToggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses200ContentApplicationJsonSchemaPropertiesOverrideToggleId"}},"required":["ok","overrideToggleId"],"additionalProperties":false},"DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdOverrideGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesValue":{},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesTenantName":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesToggleType":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesValue"},"tenantName":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesTenantName"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"toggleType":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesToggleType"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","tenantName","tenantId","toggleType"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategoryAnyOf1"}]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["boolean","string","number","json"]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultValueAnyOf0"},{}]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"name":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCategory"},"type":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesType"},"defaultValue":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultValue"},"createdAt":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","identifier","name","type"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesGlobalIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue":{"type":"string"},"DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel":{"type":"string"},"DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntriesItems"}},"DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"entries":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses200ContentApplicationJsonSchemaPropertiesEntries"}},"required":["entries"],"additionalProperties":false},"DocPathsCurrencyPolicyCurrenciesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyCurrenciesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyCurrenciesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyCurrenciesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCurrencyPolicyCurrenciesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyCurrenciesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyCurrenciesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyRatesGetParameters0Schema":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesBase":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDate":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"currencyCode":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"rate":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRate"},"date":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDate"},"source":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"}},"required":["currencyCode","rate","date","source"],"additionalProperties":false},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"base":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesBase"},"items":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["base","items"],"additionalProperties":false},"DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsCurrencyPolicyRatesGetResponses500ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters2Schema":{"type":"string","enum":["supplier_invoice","packing_list","purchase_payment_receipt","other"]},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters3Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters4Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetParameters5Schema":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType":{"type":"string","enum":["supplier_invoice","packing_list","purchase_payment_receipt","other"]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"docType":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","orderId","docType"],"additionalProperties":true},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["supplier_invoice","packing_list","purchase_payment_receipt","other"]},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1":{"type":"string","maxLength":120},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"docType":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["orderId","docType"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["supplier_invoice","packing_list","purchase_payment_receipt","other"]},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1":{"type":"string","maxLength":120},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"docType":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote"},"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersLinesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetParameters2Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetParameters3Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetParameters4Schema":{"type":"string","enum":["id","line_number"]},"DocPathsPurchasingPurchaseOrdersLinesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingPurchaseOrdersLinesGetParameters6Schema":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnitAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnitAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnitAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantity":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceIncludesTax":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetTotal":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineTotal":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"productId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"supplierProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductId"},"productTitle":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle"},"productSku":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku"},"productUnit":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductUnit"},"supplierSku":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku"},"quantity":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"receivedQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"taxRate":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRate"},"priceIncludesTax":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceIncludesTax"},"netTotal":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetTotal"},"taxAmount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxAmount"},"lineTotal":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineTotal"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"}},"required":["id","orderId","lineNumber","quantity","receivedQuantity","unitPrice","taxRate","priceIncludesTax","netTotal","taxAmount","lineTotal"],"additionalProperties":true},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters2Schema":{"type":"string","enum":["deposit","balance","other"]},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters3Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters4Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters5Schema":{"type":"string","enum":["id","paid_at","created_at"]},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingPurchaseOrdersPaymentsGetParameters7Schema":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStage":{"type":"string","enum":["deposit","balance","other"]},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReferenceAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNoteAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderId"},"stage":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStage"},"amount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"paidAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAt"},"reference":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReference"},"methodNote":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMethodNote"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id","orderId","stage","amount","currencyCode"],"additionalProperties":true},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesStage":{"type":"string","enum":["deposit","balance","other"]},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmount":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAt":{"type":"string","minLength":1},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceAnyOf1":{"type":"string","maxLength":200},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReference":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReferenceAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesOrderId"},"stage":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesStage"},"amount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAmount"},"paidAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAt"},"reference":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesReference"},"methodNote":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesMethodNote"},"attachmentId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"}},"required":["orderId","stage","amount","paidAt"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsPurchasingPurchaseOrdersPaymentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPaymentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetParameters1Schema":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsPurchasingPurchaseOrdersGetParameters3Schema":{"type":"string","enum":["draft","placed","shipped","received","closed","cancelled"]},"DocPathsPurchasingPurchaseOrdersGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetParameters5Schema":{"type":"string","maxLength":64},"DocPathsPurchasingPurchaseOrdersGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetParameters7Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetParameters8Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetParameters9Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetParameters10Schema":{"type":"string","enum":["id","number","status","total","created_at","updated_at"]},"DocPathsPurchasingPurchaseOrdersGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["draft","placed","shipped","received","closed","cancelled"]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotal":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotal":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotal":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercentAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercentAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercentAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercentAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmountAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmountAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmountAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"businessNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumber"},"productCategory":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategory"},"supplierId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId"},"supplierName":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"ownerName":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerName"},"customerId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"customerName":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName"},"status":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"subtotal":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotal"},"taxTotal":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxTotal"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotal"},"depositPercent":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositPercent"},"depositAmount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepositAmount"},"expectedShipAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedShipAt"},"placedAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","supplierId","status","currencyCode","subtotal","taxTotal","total"],"additionalProperties":true},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf1":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf1":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf1":{"type":"string","minLength":1},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPrice":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateAllOf0":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateAllOf0"}],"default":0},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTaxAllOf0":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTax":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTaxAllOf0"}],"default":true},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductId"},"supplierProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductId"},"quantity":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPrice"},"taxRate":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"priceIncludesTax":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTax"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNote"}},"required":["quantity","unitPrice"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1},"DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId"},"businessNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumber"},"productCategory":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesProductCategory"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"ownerSnapshot":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshot"},"customerId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"depositPercent":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositPercent"},"depositAmount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDepositAmount"},"expectedShipAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAt"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["supplierId","currencyCode","lines"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumberAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategoryAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshotAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshotAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf1":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercentAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf1":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmountAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf1":{"type":"string","minLength":1},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAtAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductIdAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPrice":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateAllOf0":{"type":"number"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRateAllOf0"}],"default":0},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTaxAllOf0":{"type":"boolean"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTax":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTaxAllOf0"}],"default":true},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNoteAnyOf1"}]},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesProductId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesCatalogProductId"},"supplierProductId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesSupplierProductId"},"quantity":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnitPrice"},"taxRate":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTaxRate"},"priceIncludesTax":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPriceIncludesTax"},"note":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNote"}},"required":["quantity","unitPrice"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierId"},"businessNumber":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessNumber"},"productCategory":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesProductCategory"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"ownerSnapshot":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerSnapshot"},"customerId":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"customerSnapshot":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerSnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"depositPercent":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositPercent"},"depositAmount":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDepositAmount"},"expectedShipAt":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesExpectedShipAt"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesLines"},"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersTransitionsGetParameters1Schema":{"type":"string","enum":["draft","placed","shipped","received","closed","cancelled"]},"DocPathsPurchasingPurchaseOrdersTransitionsGetParameters2Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersTransitionsGetParameters3Schema":{"type":"number"},"DocPathsPurchasingPurchaseOrdersTransitionsGetParameters4Schema":{"type":"string"},"DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["place","mark_shipped","mark_received","close","cancel"]},"DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":500},"DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId"},"action":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction"},"reason":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["id","action"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingPurchaseOrdersTransitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingPurchaseOrdersTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLineIdsItems":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLineIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLineIdsItems"},"minItems":1,"maxItems":200},"DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"lineIds":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLineIds"}},"required":["quoteId","lineIds"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesCreated":{"type":"number"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesSkipped":{"type":"number"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineNumber":{"type":"number"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItems":{"type":"object","properties":{"lineId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineNumber"},"message":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage"}},"required":["lineId","lineNumber","message"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailed":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailedItems"}},"DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"created":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesCreated"},"updated":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesUpdated"},"skipped":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesSkipped"},"failed":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses200ContentApplicationJsonSchemaPropertiesFailed"}},"required":["created","updated","skipped","failed"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsImportPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsImportPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsImportPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsImportPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsImportPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsImportPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsImportPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsImportPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesId"},"productId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"}},"required":["id","productId"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesId"},"productId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses200ContentApplicationJsonSchemaPropertiesProductId"}},"required":["id","productId"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsLinkPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsLinkPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsLinkPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsLinkPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPricesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPricesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPricesGetParameters2Schema":{"type":"string","maxLength":4000},"DocPathsPurchasingSupplierProductsPricesGetParameters3Schema":{"type":"string","enum":["supplier_cost","company_offer"]},"DocPathsPurchasingSupplierProductsPricesGetParameters4Schema":{"type":"string","maxLength":3},"DocPathsPurchasingSupplierProductsPricesGetParameters6Schema":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetParameters7Schema":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetParameters8Schema":{"type":"string","enum":["id","price_kind","currency_code","min_quantity","created_at"]},"DocPathsPurchasingSupplierProductsPricesGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingSupplierProductsPricesGetParameters10Schema":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKind":{"type":"string","enum":["supplier_cost","company_offer"]},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"supplierProductId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierProductId"},"priceKind":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceKind"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"minQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"isActive":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","supplierProductId","priceKind","currencyCode","minQuantity","unitPrice","isActive"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierProductId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceKind":{"type":"string","enum":["supplier_cost","company_offer"]},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode":{},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0":{"type":"number"},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0"}],"default":1},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0"}],"default":true},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"priceKind":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceKind"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode"},"minQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice"},"isActive":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive"}},"required":["priceKind","currencyCode","unitPrice"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"maxItems":24},"DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierProductId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierProductId"},"rows":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["supplierProductId","rows"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingSupplierProductsPricesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPricesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPricesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPricesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchemaPropertiesIdsItems":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchemaPropertiesIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchemaPropertiesIdsItems"},"minItems":1,"maxItems":100},"DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"ids":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostRequestBodyContentApplicationJsonSchemaPropertiesIds"}},"required":["ids"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesCreated":{"type":"number"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesSkipped":{"type":"number"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesCode":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesCode"},"message":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage"}},"required":["id","code","message"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailed":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailedItems"}},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"created":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesCreated"},"updated":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesUpdated"},"skipped":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesSkipped"},"failed":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses200ContentApplicationJsonSchemaPropertiesFailed"}},"required":["created","updated","skipped","failed"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromoteBatchPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromoteBatchPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPromotePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["created","updated","skipped"]},"DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesPriceSkipped":{"type":"boolean"},"DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesProductId"},"action":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesAction"},"priceSkipped":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses200ContentApplicationJsonSchemaPropertiesPriceSkipped"}},"required":["productId","action","priceSkipped"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPromotePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsPromotePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPromotePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPromotePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetParameters1Schema":{"type":"string"},"DocPathsPurchasingSupplierProductsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetParameters3Schema":{"type":"string","enum":["all","linked","unlinked"]},"DocPathsPurchasingSupplierProductsGetParameters4Schema":{"type":"string","maxLength":200},"DocPathsPurchasingSupplierProductsGetParameters5Schema":{"type":"string","enum":["active","inactive","all"]},"DocPathsPurchasingSupplierProductsGetParameters6Schema":{"type":"number"},"DocPathsPurchasingSupplierProductsGetParameters7Schema":{"type":"number"},"DocPathsPurchasingSupplierProductsGetParameters8Schema":{"type":"string","enum":["id","supplier_sku","name","created_at","updated_at"]},"DocPathsPurchasingSupplierProductsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZhAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZhAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZh":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZhAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZhAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElementsAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElementsAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElements":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElementsAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElementsAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesCurrencyCode":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesUnitPrice":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPriceAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPriceAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPrice":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPriceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPriceAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesMinQuantity":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1":{"type":"object","properties":{"currencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesCurrencyCode"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesUnitPrice"},"netUnitPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesNetUnitPrice"},"minQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1PropertiesMinQuantity"}},"required":["currencyCode","unitPrice","minQuantity"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPrice":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferPriceAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferPrice":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferPriceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPriceAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSourceAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSourceAnyOf1":{"type":"string","enum":["product","library"]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSource":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSourceAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSourceAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercentAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercentAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercentAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercentAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImageAttachmentIdsItems":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImageAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImageAttachmentIdsItems"}},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf1":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf1":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeight":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeightAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeightAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeight":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeightAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeightAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolumeAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolumeAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolume":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolumeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolumeAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf1":{"type":"object","additionalProperties":true},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPacking":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDeleted":{"type":"boolean"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteIdAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteIdAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"supplierId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId"},"supplierName":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName"},"supplierSku":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku"},"itemNo":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNo"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValue"},"name":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"nameZh":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameZh"},"nameEn":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn"},"description":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"declarationElements":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeclarationElements"},"unit":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"},"hsCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode"},"supplierCostPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierCostPrice"},"companyOfferPrice":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferPrice"},"companyOfferSource":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyOfferSource"},"discountPercent":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDiscountPercent"},"imageAttachmentIds":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImageAttachmentIds"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantity"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantity"},"unitNetWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeight"},"unitGrossWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitGrossWeight"},"unitVolume":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitVolume"},"innerPacking":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPacking"},"productId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"productSku":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku"},"productName":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductName"},"productDeleted":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductDeleted"},"status":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"source":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"lastQuoteId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastQuoteId"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","supplierId","supplierSku","name","unit","status","source"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierSku":{"type":"string","minLength":1,"maxLength":120},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1":{"type":"string","maxLength":120},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":300},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf1":{"type":"string","maxLength":300},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZh":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":300},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElements":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","maxLength":24},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"PCS"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity":{},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeight":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolume":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking":{},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIdsItems"},"maxItems":12},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"active"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId"},"supplierSku":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierSku"},"itemNo":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesItemNo"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue"},"name":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameZh":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameZh"},"nameEn":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"description":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"declarationElements":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElements"},"unit":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"hsCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"unitNetWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight"},"unitGrossWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeight"},"unitVolume":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitVolume"},"discountPercent":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"innerPacking":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking"},"imageAttachmentIds":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIds"},"status":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["supplierId","supplierSku","name","moqQuantity","cartonQuantity","unitNetWeight","unitGrossWeight","unitVolume","discountPercent","innerPacking"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierSku":{"type":"string","minLength":1,"maxLength":120},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1":{"type":"string","maxLength":120},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":300},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf1":{"type":"string","maxLength":300},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZh":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZhAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":300},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElements":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElementsAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","maxLength":24},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"PCS"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity":{},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeight":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeightOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolume":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolumeOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf1":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent":{"oneOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercentOneOf1"},{}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking":{},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIdsItems"},"maxItems":12},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"active"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierSku":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierSku"},"itemNo":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesItemNo"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValue"},"name":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameZh":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameZh"},"nameEn":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"description":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"declarationElements":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDeclarationElements"},"unit":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"hsCode":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"unitNetWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight"},"unitGrossWeight":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitGrossWeight"},"unitVolume":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitVolume"},"discountPercent":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDiscountPercent"},"innerPacking":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking"},"imageAttachmentIds":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesImageAttachmentIds"},"status":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["supplierSku","name","moqQuantity","cartonQuantity","unitNetWeight","unitGrossWeight","unitVolume","discountPercent","innerPacking","id"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingSupplierProductsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingSupplierProductsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsSyncFieldsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsSyncFieldsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesFieldsChangedItems":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesFieldsChanged":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesFieldsChangedItems"}},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesPriceChanged":{"type":"boolean"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesProductId"},"fieldsChanged":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesFieldsChanged"},"priceChanged":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses200ContentApplicationJsonSchemaPropertiesPriceChanged"}},"required":["productId","fieldsChanged","priceChanged"],"additionalProperties":false},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSupplierProductsSyncFieldsPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSupplierProductsSyncFieldsPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPurchasingSuppliersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersGetParameters1Schema":{"type":"string"},"DocPathsPurchasingSuppliersGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsPurchasingSuppliersGetParameters4Schema":{"type":"number"},"DocPathsPurchasingSuppliersGetParameters5Schema":{"type":"number"},"DocPathsPurchasingSuppliersGetParameters6Schema":{"type":"string","enum":["id","name","code","created_at","updated_at"]},"DocPathsPurchasingSuppliersGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultCurrencyCode":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"contactName":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactName"},"phone":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhone"},"email":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail"},"address":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddress"},"defaultCurrencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultCurrencyCode"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrandValue"},"isActive":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"tenant_id":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"organization_id":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"created_at":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","code","defaultCurrencyCode","isActive"],"additionalProperties":true},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPurchasingSuppliersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","maxLength":64},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1":{"type":"string","maxLength":200},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","maxLength":200},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf1":{"type":"string","maxLength":1000},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"contactName":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesContactName"},"phone":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesPhone"},"email":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"address":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesAddress"},"defaultCurrencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesDefaultCurrencyCode"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue"},"isActive":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["name"],"additionalProperties":false},"DocPathsPurchasingSuppliersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingSuppliersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1":{"type":"string","maxLength":200},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","maxLength":200},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf1":{"type":"string","maxLength":1000},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddressAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultCurrencyCode":{},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1":{"type":"string","maxLength":64},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValueAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"contactName":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesContactName"},"phone":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesPhone"},"email":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"address":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesAddress"},"defaultCurrencyCode":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesDefaultCurrencyCode"},"brandValue":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesBrandValue"},"isActive":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["id"],"additionalProperties":false},"DocPathsPurchasingSuppliersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingSuppliersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingSuppliersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPurchasingSuppliersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPurchasingSuppliersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPurchasingSuppliersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPurchasingSuppliersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPurchasingSuppliersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsAllocationsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetParameters2Schema":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetParameters4Schema":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderLineId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitleAnyOf1"}]},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSkuAnyOf1"}]},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSkuAnyOf1"}]},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantityAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantityAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantityAnyOf1"}]},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId"},"purchaseOrderNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderNumber"},"purchaseOrderLineId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderLineId"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCatalogProductId"},"productTitle":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductTitle"},"productSku":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductSku"},"supplierSku":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierSku"},"quantity":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"receivedQuantity":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedQuantity"}},"required":["id","purchaseOrderId","purchaseOrderLineId","catalogProductId","quantity"],"additionalProperties":true},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCrossBorderShipmentsAllocationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsAllocationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsAllocationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsAllocationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsCancelGetParameters1Schema":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsCrossBorderShipmentsCancelGetParameters2Schema":{"type":"number"},"DocPathsCrossBorderShipmentsCancelGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsCancelGetParameters4Schema":{"type":"string"},"DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesId"},"reason":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["id","reason"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsCancelPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDepartGetParameters1Schema":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsCrossBorderShipmentsDepartGetParameters2Schema":{"type":"number"},"DocPathsCrossBorderShipmentsDepartGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsDepartGetParameters4Schema":{"type":"string"},"DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDepartPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsDepartPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDepartPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDepartPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDepartPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDepartPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetParameters2Schema":{"type":"string","enum":["customs_declaration","packing_list","commercial_invoice","bill_of_lading","so","telex_release","domestic_freight_receipt","booking_charges_receipt","other"]},"DocPathsCrossBorderShipmentsDocumentsGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetParameters4Schema":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetParameters5Schema":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType":{"type":"string","enum":["customs_declaration","packing_list","commercial_invoice","bill_of_lading","so","telex_release","domestic_freight_receipt","booking_charges_receipt","other"]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"shipmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentId"},"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId"},"docType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"}},"required":["id","shipmentId","docType"],"additionalProperties":true},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["customs_declaration","packing_list","commercial_invoice","bill_of_lading","so","telex_release","domestic_freight_receipt","booking_charges_receipt","other"]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":1000},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentId"},"docType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["shipmentId","docType"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["customs_declaration","packing_list","commercial_invoice","bill_of_lading","so","telex_release","domestic_freight_receipt","booking_charges_receipt","other"]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":1000},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentId"},"docType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"documentNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocumentNumber"},"issuedAt":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote"},"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsDocumentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDocumentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsMilestonesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsMilestonesGetParameters2Schema":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetParameters4Schema":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMilestone":{"type":"string","enum":["picked_up","export_customs","in_transit","arrived","cleared","warehoused"]},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAtAnyOf1"}]},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"milestone":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMilestone"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOccurredAt"},"note":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"}},"required":["id","milestone"],"additionalProperties":true},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesMilestone":{"type":"string","enum":["picked_up","export_customs","in_transit","arrived","cleared","warehoused"]},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAtAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAtAnyOf1"}]},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesShipmentId"},"milestone":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesMilestone"},"occurredAt":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesOccurredAt"},"note":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["shipmentId","milestone"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsMilestonesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsMilestonesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsMilestonesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsMilestonesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceiveGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsReceiveGetParameters1Schema":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsCrossBorderShipmentsReceiveGetParameters2Schema":{"type":"number"},"DocPathsCrossBorderShipmentsReceiveGetParameters3Schema":{"type":"number"},"DocPathsCrossBorderShipmentsReceiveGetParameters4Schema":{"type":"string"},"DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceiveGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLocationId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesId"},"warehouseId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesWarehouseId"},"locationId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostRequestBodyContentApplicationJsonSchemaPropertiesLocationId"}},"required":["id","warehouseId","locationId"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceivePostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsReceivePostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceivePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsReceivePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsReceivePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsReceivePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsReceivePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsGetParameters1Schema":{"type":"string"},"DocPathsCrossBorderShipmentsGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsGetParameters3Schema":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsGetParameters4Schema":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsCrossBorderShipmentsGetParameters5Schema":{"type":"number"},"DocPathsCrossBorderShipmentsGetParameters6Schema":{"type":"number"},"DocPathsCrossBorderShipmentsGetParameters7Schema":{"type":"string","enum":["id","number","status","eta","created_at","updated_at"]},"DocPathsCrossBorderShipmentsGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePort":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf1":{"type":"string","enum":["picked_up","export_customs","in_transit","arrived","cleared","warehoused"]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEta":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"status":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"carrierName":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName"},"departurePort":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePort"},"containerType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType"},"containerNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber"},"sealNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber"},"bookingNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber"},"currentMilestone":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestone"},"etd":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtd"},"eta":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEta"},"created_at":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","status"],"additionalProperties":true},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsCrossBorderShipmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContact":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePort":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEta":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesPurchaseOrderLineId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesQuantity":{"type":"number"},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems":{"type":"object","properties":{"purchaseOrderLineId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesPurchaseOrderLineId"},"quantity":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesQuantity"}},"required":["purchaseOrderLineId","quantity"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems"},"minItems":1},"DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"carrierName":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesCarrierName"},"forwarderContact":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesForwarderContact"},"departurePort":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDeparturePort"},"containerType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerType"},"containerNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContainerNumber"},"sealNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSealNumber"},"bookingNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBookingNumber"},"destinationWarehouseId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseId"},"destinationLocationId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationId"},"etd":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEtd"},"eta":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesEta"},"notes":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"allocations":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAllocations"}},"required":["allocations"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierNameAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContact":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContactAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf1":{"type":"string","maxLength":200},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePort":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePortAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerTypeAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumberAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseIdAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationIdAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtdAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf1":{"type":"string","minLength":1},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEta":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtaAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesPurchaseOrderLineId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesQuantity":{"type":"number"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems":{"type":"object","properties":{"purchaseOrderLineId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesPurchaseOrderLineId"},"quantity":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItemsPropertiesQuantity"}},"required":["purchaseOrderLineId","quantity"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocations":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocationsItems"},"minItems":1},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"carrierName":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesCarrierName"},"forwarderContact":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesForwarderContact"},"departurePort":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDeparturePort"},"containerType":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerType"},"containerNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesContainerNumber"},"sealNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesSealNumber"},"bookingNumber":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesBookingNumber"},"destinationWarehouseId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationWarehouseId"},"destinationLocationId":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationLocationId"},"etd":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEtd"},"eta":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesEta"},"notes":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"allocations":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesAllocations"},"id":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsCrossBorderShipmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCrossBorderShipmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCrossBorderShipmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCrossBorderShipmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsLogsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsGetParameters0Schema":{"type":"string","maxLength":200},"DocPathsIntegrationsGetParameters1Schema":{"type":"string","maxLength":64},"DocPathsIntegrationsGetParameters2Schema":{"type":"string","maxLength":128},"DocPathsIntegrationsGetParameters3Schema":{"type":"boolean"},"DocPathsIntegrationsGetParameters4Schema":{"type":"string","enum":["healthy","degraded","unhealthy","unconfigured"]},"DocPathsIntegrationsGetParameters5Schema":{"type":"string","enum":["title","category","enabledAt","healthStatus"]},"DocPathsIntegrationsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsIntegrationsGetParameters7Schema":{"type":"number"},"DocPathsIntegrationsGetParameters8Schema":{"type":"number"},"DocPathsIntegrationsGetParameters9Schema":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHub":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompany":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCredentials":{"type":"boolean"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled":{"type":"boolean"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHealthStatus":{"type":"string","enum":["healthy","degraded","unhealthy","unconfigured"]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf1":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMs":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesTotalCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorRate":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCountsItems":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCounts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCountsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalytics":{"type":"object","properties":{"lastActivityAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAt"},"totalCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesTotalCount"},"errorCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorCount"},"errorRate":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorRate"},"dailyCounts":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCounts"}},"required":["lastActivityAt","totalCount","errorCount","errorRate","dailyCounts"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory"},"tags":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"hub":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHub"},"providerKey":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey"},"bundleId":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleId"},"author":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthor"},"company":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompany"},"version":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"hasCredentials":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCredentials"},"isEnabled":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled"},"apiVersion":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersion"},"healthStatus":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHealthStatus"},"lastHealthCheckedAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAt"},"lastHealthLatencyMs":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMs"},"enabledAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAt"},"analytics":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalytics"}},"required":["id","title","category","tags","hub","providerKey","bundleId","hasCredentials","isEnabled","apiVersion","healthStatus","lastHealthCheckedAt","lastHealthLatencyMs","enabledAt","analytics"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesId":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesTitle":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesDescription":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIntegrationCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesEnabledCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesDescription"},"icon":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIcon"},"integrationCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIntegrationCount"},"enabledCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesEnabledCount"}},"required":["id","title","description","icon","integrationCount","enabledCount"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"},"bundles":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundles"}},"required":["items","total","totalPages","bundles"],"additionalProperties":false},"DocPathsIntegrationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsGetParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsPutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdHealthPostParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdGetParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdStatePutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdVersionPutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdPutParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdDeleteParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdPutParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdDeleteParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdCancelPostParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdRetryPostParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncValidatePostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsGetParameters1Schema":{"type":"string"},"DocPathsPlatformOpsChannelsGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsPlatformOpsChannelsGetParameters3Schema":{"type":"string","maxLength":80},"DocPathsPlatformOpsChannelsGetParameters5Schema":{"type":"number"},"DocPathsPlatformOpsChannelsGetParameters6Schema":{"type":"number"},"DocPathsPlatformOpsChannelsGetParameters7Schema":{"type":"string","enum":["id","name","code","platform","created_at"]},"DocPathsPlatformOpsChannelsGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlatform":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountIdAnyOf1":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountIdAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotesAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"platform":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlatform"},"externalAccountId":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalAccountId"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNotes"},"tenant_id":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"organization_id":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"created_at":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","code","platform","currencyCode","isActive"],"additionalProperties":true},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPlatformOpsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesPlatform":{"type":"string","minLength":1,"maxLength":80},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf1":{"type":"string","maxLength":200},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf1"}]},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":1000},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"platform":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesPlatform"},"externalAccountId":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountId"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["name","code","platform","currencyCode"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesPlatform":{"type":"string","minLength":1,"maxLength":80},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf1":{"type":"string","maxLength":200},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountIdAnyOf1"}]},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":1000},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"platform":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesPlatform"},"externalAccountId":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesExternalAccountId"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"isActive":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"notes":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsChannelsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsChannelsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPlatformOpsChannelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsChannelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsChannelsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsChannelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesExternalOrderId":{"type":"string","minLength":1,"maxLength":200},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatusAnyOf1":{"type":"string","maxLength":80},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatusAnyOf1"}]},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesCurrencyCode":{},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesGrossAmount":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesFeeAmount":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesNetAmount":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAtAnyOf1":{"type":"string","minLength":1},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentIdAnyOf1"}]},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumberAnyOf1":{"type":"string","maxLength":120},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumberAnyOf1"}]},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItems":{"type":"object","properties":{"externalOrderId":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesExternalOrderId"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesStatus"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesCurrencyCode"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesNetAmount"},"placedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesPlacedAt"},"shipmentId":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItemsPropertiesShipmentNumber"}},"required":["externalOrderId"],"additionalProperties":false},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrders":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrdersItems"},"minItems":1,"maxItems":500},"DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"channelId":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"orders":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostRequestBodyContentApplicationJsonSchemaPropertiesOrders"}},"required":["channelId","orders"],"additionalProperties":false},"DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesCreated":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesUnchanged":{"type":"number"},"DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"created":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesCreated"},"updated":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesUpdated"},"unchanged":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses200ContentApplicationJsonSchemaPropertiesUnchanged"}},"required":["ok","created","updated","unchanged"],"additionalProperties":false},"DocPathsPlatformOpsOrdersIngestPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersIngestPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsOrdersIngestPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersIngestPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsOrdersIngestPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersIngestPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsOrdersIngestPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersIngestPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersIngestPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsOrdersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsPlatformOpsOrdersGetParameters3Schema":{"type":"string","maxLength":80},"DocPathsPlatformOpsOrdersGetParameters4Schema":{"type":"number"},"DocPathsPlatformOpsOrdersGetParameters5Schema":{"type":"number"},"DocPathsPlatformOpsOrdersGetParameters6Schema":{"type":"string","enum":["id","external_order_id","placed_at","created_at"]},"DocPathsPlatformOpsOrdersGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPlatformOpsOrdersGetParameters8Schema":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalOrderId":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatusAnyOf1"}]},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1"}]},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAtAnyOf1"}]},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"channelId":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"externalOrderId":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalOrderId"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount"},"placedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber"},"syncedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSyncedAt"}},"required":["id","channelId","externalOrderId","currencyCode","grossAmount","feeAmount","netAmount"],"additionalProperties":true},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPlatformOpsOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsOrdersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"type":"string","minLength":1,"maxLength":500},"DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchemaPropertiesId"},"note":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["id","note"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["ignored"]},"DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses200ContentApplicationJsonSchemaPropertiesStatus"}},"required":["ok","status"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationIgnorePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationIgnorePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationIgnorePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationIgnorePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationIgnorePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationIgnorePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationIgnorePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationIgnorePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationIgnorePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"type":"string","minLength":1,"maxLength":500},"DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchemaPropertiesId"},"note":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["id","note"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["resolved"]},"DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchemaPropertiesOk"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses200ContentApplicationJsonSchemaPropertiesStatus"}},"required":["ok","status"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationResolvePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationResolvePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationResolvePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationResolvePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationResolvePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationResolvePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationResolvePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationResolvePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationResolvePostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetParameters2Schema":{"type":"string","enum":["missing_in_erp","amount_mismatch","duplicate_line"]},"DocPathsPlatformOpsReconciliationGetParameters3Schema":{"type":"string","enum":["open","resolved","ignored"]},"DocPathsPlatformOpsReconciliationGetParameters4Schema":{"type":"number"},"DocPathsPlatformOpsReconciliationGetParameters5Schema":{"type":"number"},"DocPathsPlatformOpsReconciliationGetParameters6Schema":{"type":"string","enum":["id","kind","created_at"]},"DocPathsPlatformOpsReconciliationGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPlatformOpsReconciliationGetParameters8Schema":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["missing_in_erp","amount_mismatch","duplicate_line"]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRef":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementIdAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmountAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmountAnyOf1":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmountAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmountAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmountAnyOf1":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmountAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["open","resolved","ignored"]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf1"}]},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"channelId":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"kind":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"externalRef":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRef"},"settlementId":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementId"},"orderMirrorId":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorId"},"expectedAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedAmount"},"actualAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActualAmount"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"note":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAt"}},"required":["id","channelId","kind","externalRef","status"],"additionalProperties":true},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsReconciliationGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsReconciliationGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsReconciliationGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesExternalSettlementId":{"type":"string","minLength":1,"maxLength":200},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStartAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStartAnyOf1":{"type":"string","minLength":1},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStartAnyOf1"}]},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEndAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEndAnyOf1":{"type":"string","minLength":1},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEndAnyOf1"}]},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesCurrencyCode":{},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesGrossAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesFeeAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesNetAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAtAnyOf1":{"type":"string","minLength":1},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAtAnyOf1"}]},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlement":{"type":"object","properties":{"externalSettlementId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesExternalSettlementId"},"periodStart":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodStart"},"periodEnd":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesPeriodEnd"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesCurrencyCode"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesNetAmount"},"receivedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlementPropertiesReceivedAt"}},"required":["externalSettlementId"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesExternalOrderId":{"type":"string","minLength":1,"maxLength":200},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesGrossAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesFeeAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNetAmount":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"externalOrderId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesExternalOrderId"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesNetAmount"}},"required":["externalOrderId"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1,"maxItems":2000},"DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"channelId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesChannelId"},"settlement":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesSettlement"},"lines":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["channelId","settlement","lines"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesSettlementId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesLines":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesRaised":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesLinked":{"type":"number"},"DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"settlementId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesSettlementId"},"lines":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesLines"},"raised":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesRaised"},"linked":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses200ContentApplicationJsonSchemaPropertiesLinked"}},"required":["ok","settlementId","lines","raised","linked"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsImportPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsImportPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsImportPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsImportPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsImportPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsImportPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsImportPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsImportPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsImportPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsLinesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsLinesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsLinesGetParameters2Schema":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetParameters3Schema":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetParameters4Schema":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalOrderId":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorIdAnyOf1"}]},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"settlementId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSettlementId"},"externalOrderId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalOrderId"},"orderMirrorId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrderMirrorId"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount"}},"required":["id","settlementId","externalOrderId","grossAmount","feeAmount","netAmount"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsGetParameters2Schema":{"type":"string","maxLength":40},"DocPathsPlatformOpsSettlementsGetParameters3Schema":{"type":"number"},"DocPathsPlatformOpsSettlementsGetParameters4Schema":{"type":"number"},"DocPathsPlatformOpsSettlementsGetParameters5Schema":{"type":"string","enum":["id","period_end","created_at"]},"DocPathsPlatformOpsSettlementsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPlatformOpsSettlementsGetParameters7Schema":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId":{"type":"string","format":"uuid"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalSettlementId":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStartAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStartAnyOf1":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStartAnyOf1"}]},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEndAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEndAnyOf1":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEndAnyOf1"}]},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"channelId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelId"},"externalSettlementId":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalSettlementId"},"periodStart":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodStart"},"periodEnd":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriodEnd"},"currencyCode":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"grossAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGrossAmount"},"feeAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFeeAmount"},"netAmount":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNetAmount"},"status":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"receivedAt":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt"}},"required":["id","channelId","externalSettlementId","currencyCode","grossAmount","feeAmount","netAmount","status"],"additionalProperties":true},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPlatformOpsSettlementsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPlatformOpsSettlementsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPlatformOpsSettlementsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetParameters1Schema":{"type":"string"},"DocPathsProductsCategoriesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsProductsCategoriesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetParameters7Schema":{"type":"number"},"DocPathsProductsCategoriesGetParameters8Schema":{"type":"number"},"DocPathsProductsCategoriesGetParameters9Schema":{"type":"string","enum":["id","code","name","tree_path","sort_order","created_at","updated_at"]},"DocPathsProductsCategoriesGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentIdAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootIdAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf1":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePathAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIdsItems":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIdsItems"}},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIdsItems":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIdsItems"}},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIdsItems":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIdsItems"}},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn"},"parentId":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParentId"},"rootId":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRootId"},"treePath":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTreePath"},"depth":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepth"},"ancestorIds":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAncestorIds"},"childIds":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChildIds"},"descendantIds":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescendantIds"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"organizationId":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"created_at":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","code","name","depth","ancestorIds","childIds","descendantIds","sortOrder","isActive"],"additionalProperties":true},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProductsCategoriesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9_]+$","maxLength":64},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":200},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0":{"type":"number"},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0"}],"default":0},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"parentId":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name"],"additionalProperties":false},"DocPathsProductsCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsCategoriesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9_]+$","maxLength":64},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":200},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0":{"type":"null"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentIdAnyOf1"}]},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0":{"type":"number"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0"}],"default":0},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"parentId":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesParentId"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"id":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsCategoriesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsCategoriesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsCategoriesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsCategoriesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsCategoriesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsCategoriesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsCategoriesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsCategoriesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetParameters1Schema":{"type":"string"},"DocPathsProductsItemsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsProductsItemsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetParameters6Schema":{"type":"string","enum":["active","inactive","all"]},"DocPathsProductsItemsGetParameters8Schema":{"type":"number"},"DocPathsProductsItemsGetParameters9Schema":{"type":"number"},"DocPathsProductsItemsGetParameters10Schema":{"type":"string","enum":["id","sku","name","status","created_at","updated_at"]},"DocPathsProductsItemsGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrand":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModelAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModelAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModelAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeIdAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeIdAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryIdAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBattery":{"type":"boolean"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCodeAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"sku":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn"},"brand":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBrand"},"manufacturerModel":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManufacturerModel"},"typeId":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTypeId"},"categoryId":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryId"},"unit":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"containsLithiumBattery":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainsLithiumBattery"},"hsCode":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode"},"countryOfOriginCode":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryOfOriginCode"},"created_at":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","sku","name","brand","unit","status","containsLithiumBattery"],"additionalProperties":true},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsProductsItemsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProductsItemsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","pattern":"^[A-Za-z0-9._\\-/]{1,64}$","maxLength":64},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":300},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":300},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandAllOf0":{"type":"string","maxLength":120},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBrand":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBrandAllOf0"}],"default":""},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf1":{"type":"string","maxLength":120},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeries":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf1":{"type":"string","maxLength":120},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf1":{"type":"string","maxLength":500},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf1":{"type":"string","maxLength":64},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","maxLength":24},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"PCS"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0"},{}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNetWeightOneOf1":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNetWeight":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNetWeightOneOf1"},{}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesGrossWeightOneOf1":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesGrossWeight":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesGrossWeightOneOf1"},{}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVolumeOneOf1":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVolume":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVolumeOneOf1"},{}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity":{},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBatteryWhOneOf1":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBatteryWh":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBatteryWhOneOf1"},{}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBatteryAllOf0":{"type":"boolean"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBatteryAllOf0"}],"default":false},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1Items":{"type":"string","minLength":1,"maxLength":120},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1Items"},"maxItems":50},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertifications":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"active"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf1":{"type":"string","maxLength":64},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatusAllOf0"}],"default":"active"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefaultAllOf0":{"type":"boolean"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefault":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefaultAllOf0"}],"default":false},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf0":{"type":"null"},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf1"}]},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName"},"barcode":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcode"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatus"},"isDefault":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefault"},"attributes":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributes"}},"required":["code","name"],"additionalProperties":false},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariants":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariantsItems"},"maxItems":200},"DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"sku":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSku"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"brand":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBrand"},"series":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSeries"},"manufacturerModel":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModel"},"typeId":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesTypeId"},"categoryId":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCategoryId"},"specSummary":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesSpecSummary"},"barcode":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBarcode"},"unit":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"hsCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"cnCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCnCode"},"countryOfOriginCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode"},"netWeight":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNetWeight"},"grossWeight":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesGrossWeight"},"volume":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVolume"},"dimensions":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity"},"batteryCapacityMah":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity"},"batteryWh":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesBatteryWh"},"containsLithiumBattery":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery"},"certifications":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCertifications"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"notes":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"variants":{"$ref":"#/components/schemas/DocPathsProductsItemsPostRequestBodyContentApplicationJsonSchemaPropertiesVariants"}},"required":["sku","name","netWeight","grossWeight","volume","dimensions","cartonQuantity","batteryCapacityMah","batteryWh"],"additionalProperties":false},"DocPathsProductsItemsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsItemsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsItemsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSku":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":300},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":300},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandAllOf0":{"type":"string","maxLength":120},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBrand":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBrandAllOf0"}],"default":""},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf1":{"type":"string","maxLength":120},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeries":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeriesAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf1":{"type":"string","maxLength":120},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModelAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeIdAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryIdAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf1":{"type":"string","maxLength":500},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummary":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummaryAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf1":{"type":"string","maxLength":64},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcodeAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","maxLength":24},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"PCS"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCodeAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCodeAnyOf0"},{}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNetWeightOneOf1":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNetWeight":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNetWeightOneOf1"},{}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesGrossWeightOneOf1":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesGrossWeight":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesGrossWeightOneOf1"},{}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVolumeOneOf1":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVolume":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVolumeOneOf1"},{}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions":{},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity":{},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBatteryWhOneOf1":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBatteryWh":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBatteryWhOneOf1"},{}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBatteryAllOf0":{"type":"boolean"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBatteryAllOf0"}],"default":false},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1Items":{"type":"string","minLength":1,"maxLength":120},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1Items"},"maxItems":50},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertifications":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertificationsAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"active"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductIdAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIdAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf1":{"type":"string","maxLength":64},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcodeAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatusAllOf0":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatusAllOf0"}],"default":"active"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefaultAllOf0":{"type":"boolean"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefault":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefaultAllOf0"}],"default":false},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf0":{"type":"null"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributesAnyOf1"}]},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesName"},"barcode":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesBarcode"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesStatus"},"isDefault":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesIsDefault"},"attributes":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItemsPropertiesAttributes"}},"required":["code","name"],"additionalProperties":false},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariants":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariantsItems"},"maxItems":200},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"sku":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSku"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"brand":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBrand"},"series":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSeries"},"manufacturerModel":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesManufacturerModel"},"typeId":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesTypeId"},"categoryId":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCategoryId"},"specSummary":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesSpecSummary"},"barcode":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBarcode"},"unit":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"hsCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"cnCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCnCode"},"countryOfOriginCode":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCountryOfOriginCode"},"netWeight":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNetWeight"},"grossWeight":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesGrossWeight"},"volume":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVolume"},"dimensions":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesDimensions"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity"},"batteryCapacityMah":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCartonQuantity"},"batteryWh":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesBatteryWh"},"containsLithiumBattery":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesContainsLithiumBattery"},"certifications":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCertifications"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"notes":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"variants":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesVariants"},"id":{"$ref":"#/components/schemas/DocPathsProductsItemsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsItemsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsItemsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsItemsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsItemsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsItemsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsProductsPricesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsProductsPricesGetParameters2Schema":{"type":"string","enum":["purchase","internal","export"]},"DocPathsProductsPricesGetParameters3Schema":{"type":"string","maxLength":3},"DocPathsProductsPricesGetParameters5Schema":{"type":"number"},"DocPathsProductsPricesGetParameters6Schema":{"type":"number"},"DocPathsProductsPricesGetParameters7Schema":{"type":"string","enum":["id","price_tier","currency_code","min_quantity","created_at"]},"DocPathsProductsPricesGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProductsPricesGetParameters9Schema":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTier":{"type":"string","enum":["purchase","internal","export"]},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity":{"type":"number"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAtAnyOf1"}]},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAtAnyOf1"}]},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"productId":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"priceTier":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"minQuantity":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMinQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"startsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndsAt"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"created_at":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","productId","priceTier","currencyCode","minQuantity","unitPrice","isActive"],"additionalProperties":true},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsProductsPricesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProductsPricesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf1"}]},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceTier":{"type":"string","enum":["purchase","internal","export"]},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0":{"type":"number"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0"}],"default":1},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice":{},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf1":{"type":"string","minLength":1},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf1"}]},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf1":{"type":"string","minLength":1},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf1"}]},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId"},"priceTier":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode"},"minQuantity":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice"},"startsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAt"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive"}},"required":["priceTier","currencyCode","unitPrice"],"additionalProperties":false},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"maxItems":100},"DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"rows":{"$ref":"#/components/schemas/DocPathsProductsPricesPostRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["productId","rows"],"additionalProperties":false},"DocPathsProductsPricesPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsPricesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsPricesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf0":{"type":"null"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIdAnyOf1"}]},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceTier":{"type":"string","enum":["purchase","internal","export"]},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0":{"type":"number"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantityAllOf0"}],"default":1},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice":{},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf1":{"type":"string","minLength":1},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAtAnyOf1"}]},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf0":{"type":"null"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf1":{"type":"string","minLength":1},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAtAnyOf1"}]},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId"},"priceTier":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesCurrencyCode"},"minQuantity":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMinQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitPrice"},"startsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesStartsAt"},"endsAt":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesEndsAt"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesIsActive"}},"required":["priceTier","currencyCode","unitPrice"],"additionalProperties":false},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"maxItems":100},"DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"rows":{"$ref":"#/components/schemas/DocPathsProductsPricesPutRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["productId","rows"],"additionalProperties":false},"DocPathsProductsPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsPricesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsPricesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsPricesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsPricesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsPricesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsProductsTypesGetParameters1Schema":{"type":"string"},"DocPathsProductsTypesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsProductsTypesGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsProductsTypesGetParameters5Schema":{"type":"number"},"DocPathsProductsTypesGetParameters6Schema":{"type":"number"},"DocPathsProductsTypesGetParameters7Schema":{"type":"string","enum":["id","code","name","sort_order","created_at","updated_at"]},"DocPathsProductsTypesGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEnAnyOf1"}]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder":{"type":"number"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameEn"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"organizationId":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"created_at":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","code","name","sortOrder","isActive"],"additionalProperties":true},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsProductsTypesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProductsTypesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9_]+$","maxLength":64},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":200},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0":{"type":"number"},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0"}],"default":0},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsTypesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name"],"additionalProperties":false},"DocPathsProductsTypesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsTypesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsTypesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","pattern":"^[a-z0-9_]+$","maxLength":64},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0":{"type":"null"},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1":{"type":"string","maxLength":200},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEnAnyOf1"}]},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0":{"type":"number"},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrderAllOf0"}],"default":0},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"nameEn":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesNameEn"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesSortOrder"},"isActive":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"id":{"$ref":"#/components/schemas/DocPathsProductsTypesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductsTypesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsTypesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsTypesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductsTypesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductsTypesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsTypesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsTypesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsTypesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsProductsVariantsOptionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsVariantsOptionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsProductsVariantsOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsVariantsOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsVariantsOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsVariantsOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsVariantsOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsProductsItemsIdGetParameters0Schema":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSku":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesName":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductIdAnyOf0":{"type":"null"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductIdAnyOf1":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductIdAnyOf1"}]},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesCode":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesName":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcodeAnyOf0":{"type":"null"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcodeAnyOf1":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcodeAnyOf1"}]},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesStatus":{"type":"string","enum":["active","inactive"]},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributesAnyOf0":{"type":"null"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributesAnyOf1":{"type":"object","additionalProperties":true},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributesAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributesAnyOf1"}]},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesSortOrder":{"type":"number"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesName"},"barcode":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesBarcode"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesStatus"},"isDefault":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesIsDefault"},"attributes":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesAttributes"},"sortOrder":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItemsPropertiesSortOrder"}},"required":["id","code","name","barcode","status","isDefault","attributes","sortOrder"],"additionalProperties":false},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariants":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariantsItems"}},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"sku":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSku"},"name":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesName"},"status":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCatalogProductId"},"variants":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesVariants"},"updatedAt":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"}},"required":["id","sku","name","status","catalogProductId","variants","updatedAt"],"additionalProperties":true},"DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsProductsItemsIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsProductsItemsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductsItemsIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductsItemsIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductsItemsIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesAliasCode":{"type":"string","minLength":1,"maxLength":120},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesTargetKind":{"type":"string","enum":["product","supplier_product"]},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesTargetId":{"type":"string","format":"uuid"},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"aliasCode":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesAliasCode"},"targetKind":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesTargetKind"},"targetId":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesTargetId"},"note":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["aliasCode","targetKind","targetId"],"additionalProperties":false},"DocPathsProductCodesAliasesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductCodesAliasesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesAliasesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesAliasesPostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesRuleId":{"type":"string","format":"uuid"},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue":{"type":"string","minLength":1,"maxLength":64},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesCategoryValue":{"type":"string","minLength":1,"maxLength":64},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0":{"type":"boolean"},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesDryRun":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0"}],"default":false},"DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"ruleId":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesRuleId"},"brandValue":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesBrandValue"},"categoryValue":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesCategoryValue"},"dryRun":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostRequestBodyContentApplicationJsonSchemaPropertiesDryRun"}},"required":["brandValue"],"additionalProperties":false},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesRuleId":{"type":"string","format":"uuid"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesRuleName":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesDryRun":{"type":"boolean"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerIdAnyOf0":{"type":"null"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerIdAnyOf1"}]},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesNextSerial":{"type":"number"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKey":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKind":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesValue":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabelAnyOf1"}]},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKnown":{"type":"boolean"},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItems":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKey"},"kind":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKind"},"value":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesLabel"},"known":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItemsPropertiesKnown"}},"required":["key","kind","value","label","known"],"additionalProperties":false},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesParts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesPartsItems"}},"DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesCode"},"ruleId":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesRuleId"},"ruleName":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesRuleName"},"dryRun":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesDryRun"},"ledgerId":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesLedgerId"},"nextSerial":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesNextSerial"},"parts":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses200ContentApplicationJsonSchemaPropertiesParts"}},"required":["code","ruleId","ruleName","dryRun","ledgerId","nextSerial","parts"],"additionalProperties":false},"DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesGeneratePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsProductCodesGeneratePostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsProductCodesParseGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsProductCodesParseGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesParseGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesParseGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesParseGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesParseGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesParseGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesGetParameters0Schema":{"type":"string","maxLength":200},"DocPathsProductCodesRulesGetParameters1Schema":{"type":"number"},"DocPathsProductCodesRulesGetParameters2Schema":{"type":"number"},"DocPathsProductCodesRulesGetParameters3Schema":{"type":"string","enum":["name","created_at","updated_at"]},"DocPathsProductCodesRulesGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProductCodesRulesGetParameters5Schema":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMode":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentsItems":{"type":"object","additionalProperties":true},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentsItems"}},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeparator":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialLength":{"type":"number"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialScope":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnforce":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"mode":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMode"},"segments":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegments"},"separator":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeparator"},"serialLength":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialLength"},"serialScope":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialScope"},"enforce":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnforce"},"isActive":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"updatedAt":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","mode","segments","separator","serialLength","serialScope","enforce","isActive","updatedAt"],"additionalProperties":false},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProductCodesRulesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0":{"type":"string","enum":["generate","carry_over"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0"}],"default":"generate"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKind":{"type":"string","enum":["dictionary"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKey":{"type":"string","pattern":"^[a-z][a-z0-9_]*$"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesDictionaryKey":{"type":"string","pattern":"^[a-z][a-z0-9_]*$"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesLength":{"type":"number"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpperAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpper":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpperAllOf0"}],"default":true},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoinAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoin":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoinAllOf0"}],"default":false},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKind"},"key":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKey"},"dictionaryKey":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesDictionaryKey"},"length":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesLength"},"upper":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpper"},"join":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoin"}},"required":["kind","key","dictionaryKey","length"],"additionalProperties":false},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKind":{"type":"string","enum":["serial"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKey":{"type":"string","enum":["serial"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesLength":{"type":"number"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoinAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoin":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoinAllOf0"}],"default":false},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKind"},"key":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKey"},"length":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesLength"},"join":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoin"}},"required":["kind","key","length"],"additionalProperties":false},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1"}]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItems"},"minItems":1,"maxItems":8},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSeparatorAllOf0":{"type":"string","maxLength":1},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSeparator":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSeparatorAllOf0"}],"default":"-"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialLengthAllOf0":{"type":"number"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialLength":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialLengthAllOf0"}],"default":3},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialScopeAllOf0":{"type":"string","enum":["brand_category","brand","global"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialScope":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialScopeAllOf0"}],"default":"brand_category"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesEnforceAllOf0":{"type":"string","enum":["warn","strict"]},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesEnforce":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesEnforceAllOf0"}],"default":"warn"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"mode":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesMode"},"segments":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSegments"},"separator":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSeparator"},"serialLength":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialLength"},"serialScope":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesSerialScope"},"enforce":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesEnforce"},"isActive":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["name","segments"],"additionalProperties":false},"DocPathsProductCodesRulesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductCodesRulesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductCodesRulesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0":{"type":"string","enum":["generate","carry_over"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesMode":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesModeAllOf0"}],"default":"generate"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKind":{"type":"string","enum":["dictionary"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKey":{"type":"string","pattern":"^[a-z][a-z0-9_]*$"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesDictionaryKey":{"type":"string","pattern":"^[a-z][a-z0-9_]*$"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesLength":{"type":"number"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpperAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpper":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpperAllOf0"}],"default":true},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoinAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoin":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoinAllOf0"}],"default":false},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKind"},"key":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesKey"},"dictionaryKey":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesDictionaryKey"},"length":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesLength"},"upper":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesUpper"},"join":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0PropertiesJoin"}},"required":["kind","key","dictionaryKey","length"],"additionalProperties":false},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKind":{"type":"string","enum":["serial"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKey":{"type":"string","enum":["serial"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesLength":{"type":"number"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoinAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoin":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoinAllOf0"}],"default":false},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKind"},"key":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesKey"},"length":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesLength"},"join":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1PropertiesJoin"}},"required":["kind","key","length"],"additionalProperties":false},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItems":{"oneOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItemsOneOf1"}]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentsItems"},"minItems":1,"maxItems":8},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSeparatorAllOf0":{"type":"string","maxLength":1},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSeparator":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSeparatorAllOf0"}],"default":"-"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialLengthAllOf0":{"type":"number"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialLength":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialLengthAllOf0"}],"default":3},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialScopeAllOf0":{"type":"string","enum":["brand_category","brand","global"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialScope":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialScopeAllOf0"}],"default":"brand_category"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesEnforceAllOf0":{"type":"string","enum":["warn","strict"]},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesEnforce":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesEnforceAllOf0"}],"default":"warn"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"mode":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesMode"},"segments":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSegments"},"separator":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSeparator"},"serialLength":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialLength"},"serialScope":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesSerialScope"},"enforce":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesEnforce"},"isActive":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"id":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProductCodesRulesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductCodesRulesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductCodesRulesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsProductCodesRulesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsProductCodesRulesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesRulesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesRulesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesRulesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesSequencesGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsProductCodesSequencesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesSequencesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesSequencesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProductCodesSequencesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProductCodesSequencesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProductCodesSequencesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf0":{"type":"null"},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf1":{"type":"string"},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProvider":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf1"}]},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf0":{"type":"null"},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf1":{"type":"string"},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf1"}]},"DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"available":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesAvailable"},"provider":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesProvider"},"model":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses200ContentApplicationJsonSchemaPropertiesModel"}},"required":["available","provider","model"],"additionalProperties":false},"DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingAiStatusGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingImportProfilesGetParameters0Schema":{"type":"string","maxLength":200},"DocPathsSourcingImportProfilesGetParameters1Schema":{"type":"number"},"DocPathsSourcingImportProfilesGetParameters2Schema":{"type":"number"},"DocPathsSourcingImportProfilesGetParameters3Schema":{"type":"string","enum":["name","usage_count","updated_at"]},"DocPathsSourcingImportProfilesGetParameters4Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSourcingImportProfilesGetParameters5Schema":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf0":{"type":"null"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf1"}]},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLayoutSignature":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetNameAnyOf0":{"type":"null"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetNameAnyOf1":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetNameAnyOf1"}]},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColumnMap":{},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUsageCount":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf0":{"type":"null"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf1":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf1"}]},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"supplierId":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId"},"layoutSignature":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLayoutSignature"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHeaderRowIndex"},"columnMap":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColumnMap"},"usageCount":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUsageCount"},"lastUsedAt":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","layoutSignature","headerRowIndex","columnMap","usageCount"],"additionalProperties":true},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSourcingImportProfilesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingImportProfilesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingImportProfilesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingImportProfilesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSourcingImportProfilesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSourcingImportProfilesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingImportProfilesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingImportProfilesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingImportProfilesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingImportProfilesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesGetParameters1Schema":{"type":"string","enum":["staged","ready","invalid","skipped","promoted"]},"DocPathsSourcingQuoteLinesGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsSourcingQuoteLinesGetParameters4Schema":{"type":"number"},"DocPathsSourcingQuoteLinesGetParameters5Schema":{"type":"number"},"DocPathsSourcingQuoteLinesGetParameters6Schema":{"type":"string","enum":["line_number","unit_cost","created_at","updated_at"]},"DocPathsSourcingQuoteLinesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSourcingQuoteLinesGetParameters8Schema":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumberAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumberAnyOf1":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumberAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabelAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabelAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabelAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNoAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductNameAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabelAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabelAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabelAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSkuAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSkuAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSkuAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCodeAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCostAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCostAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCost":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCostAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCostAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCodeAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRspAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRspAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRsp":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRspAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRspAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRawAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRawAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRaw":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRawAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRawAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf1":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantityAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf1":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantityAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeight":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeightAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPacking":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPackingAnyOf0"},{}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRawAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRaw":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRawAnyOf0"},{}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarningsItems":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarnings":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarningsItems"}},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRowStatus":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelected":{"type":"boolean"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductIdAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductIdAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"sourceRowNumber":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceRowNumber"},"sectionLabel":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSectionLabel"},"itemNo":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesItemNo"},"productName":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductName"},"variantLabel":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVariantLabel"},"derivedSku":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDerivedSku"},"hsCode":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHsCode"},"unit":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"},"unitCost":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitCost"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"suggestedRsp":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSuggestedRsp"},"moqRaw":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqRaw"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMoqQuantity"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCartonQuantity"},"unitNetWeight":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitNetWeight"},"innerPacking":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInnerPacking"},"raw":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRaw"},"warnings":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarnings"},"rowStatus":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRowStatus"},"selected":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSelected"},"promotedProductId":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedProductId"},"updated_at":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","quoteId","lineNumber","unit","warnings","rowStatus","selected"],"additionalProperties":true},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSourcingQuoteLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabelAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabelAnyOf1":{"type":"string","maxLength":120},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabelAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1":{"type":"string","maxLength":120},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNoAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductNameAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductNameAnyOf1":{"type":"string","maxLength":300},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductNameAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSkuAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSkuAnyOf1":{"type":"string","pattern":"^[A-Za-z0-9._\\-/]{1,64}$"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSkuAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCodeAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","maxLength":24},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"PCS"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCostOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCostOneOf1":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCost":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCostOneOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCostOneOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRspOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRspOneOf1":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRsp":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRspOneOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRspOneOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRawAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRawAnyOf1":{"type":"string","maxLength":64},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRaw":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRawAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRawAnyOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity":{},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1":{"type":"null"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeightOneOf1"}]},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking":{},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSelectedAllOf0":{"type":"boolean"},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSelected":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSelectedAllOf0"}],"default":true},"DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"sectionLabel":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSectionLabel"},"itemNo":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesItemNo"},"productName":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesProductName"},"derivedSku":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDerivedSku"},"hsCode":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesHsCode"},"description":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"unit":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"unitCost":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitCost"},"suggestedRsp":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSuggestedRsp"},"moqRaw":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqRaw"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"cartonQuantity":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesMoqQuantity"},"unitNetWeight":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitNetWeight"},"innerPacking":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesInnerPacking"},"selected":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostRequestBodyContentApplicationJsonSchemaPropertiesSelected"}},"required":["quoteId","unitCost","suggestedRsp","moqQuantity","cartonQuantity","unitNetWeight","innerPacking"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUpdatedAt":{"type":"string","minLength":1},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSelected":{"type":"boolean"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSkuOneOf0":{"type":"string","pattern":"^[A-Za-z0-9._\\-/]{1,64}$"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSkuOneOf1":{"type":"null"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSku":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSkuOneOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSkuOneOf1"}]},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductNameAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductNameAnyOf1":{"type":"string","maxLength":300},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductNameAnyOf1"}]},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMoqQuantity":{},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCostOneOf0":{"type":"string","pattern":"^-?\\d+(?:\\.\\d+)?$"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCostOneOf1":{"type":"null"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCost":{"oneOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCostOneOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCostOneOf1"}]},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabelAnyOf0":{"type":"null"},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabelAnyOf1":{"type":"string","maxLength":120},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabelAnyOf1"}]},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesId"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUpdatedAt"},"selected":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSelected"},"derivedSku":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesDerivedSku"},"productName":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesProductName"},"moqQuantity":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesMoqQuantity"},"unitCost":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesUnitCost"},"sectionLabel":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItemsPropertiesSectionLabel"}},"required":["id","updatedAt","moqQuantity","unitCost"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRows":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRowsItems"},"minItems":1,"maxItems":200},"DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"rows":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutRequestBodyContentApplicationJsonSchemaPropertiesRows"}},"required":["quoteId","rows"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSourcingQuoteLinesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSourcingQuoteLinesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSourcingQuoteLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuoteLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuoteLinesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuoteLinesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesSheetName":{"type":"string","maxLength":120},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeSampleRowsAllOf0":{"type":"boolean"},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeSampleRows":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeSampleRowsAllOf0"}],"default":true},"DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex"},"includeSampleRows":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeSampleRows"}},"required":["quoteId"],"additionalProperties":false},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesColumns":{"type":"array","items":{}},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf0":{"type":"null"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf1":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProvider":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProviderAnyOf1"}]},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf0":{"type":"null"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf1":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModelAnyOf1"}]},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSentPropertiesHeaders":{"type":"number"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSentPropertiesSampleRows":{"type":"number"},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSent":{"type":"object","properties":{"headers":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSentPropertiesHeaders"},"sampleRows":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSentPropertiesSampleRows"}},"required":["headers","sampleRows"],"additionalProperties":false},"DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"columns":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesColumns"},"notes":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesNotes"},"provider":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesProvider"},"model":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesModel"},"sent":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses200ContentApplicationJsonSchemaPropertiesSent"}},"required":["columns","notes","provider","model","sent"],"additionalProperties":false},"DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses502ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesAiMappingPostResponses503ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesApprovePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumberAnyOf0":{"type":"null"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumberAnyOf1":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumberAnyOf1"}]},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAtAnyOf0":{"type":"null"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAtAnyOf1":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAtAnyOf1"}]},"DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesNumber"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"approvedAt":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses200ContentApplicationJsonSchemaPropertiesApprovedAt"}},"required":["id","number","status","approvedAt"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesApprovePostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesArchivePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchemaPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses200ContentApplicationJsonSchemaPropertiesStatus"}},"required":["id","status"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesArchivePostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesSheetName":{"type":"string","maxLength":120},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesProfileId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex"},"profileId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostRequestBodyContentApplicationJsonSchemaPropertiesProfileId"}},"required":["quoteId","attachmentId"],"additionalProperties":false},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuote":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus"}},"required":["id","status"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesSheetName":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndexAnyOf0":{"type":"null"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndexAnyOf1":{"type":"number"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndex":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndexAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndexAnyOf1"}]},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderCellsItems":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderCells":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderCellsItems"}},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDataRowCount":{"type":"number"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesLineCount":{"type":"number"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesTemplateMatched":{"type":"boolean"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf1"}]},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesLayoutSignature":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrencyAnyOf0":{"type":"null"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrencyAnyOf1":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrencyAnyOf1"}]},"DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"quote":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesQuote"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderRowIndex"},"unitRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesUnitRowIndex"},"headerCells":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesHeaderCells"},"dataRowCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDataRowCount"},"lineCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesLineCount"},"templateMatched":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesTemplateMatched"},"matchedProfileId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileId"},"layoutSignature":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesLayoutSignature"},"detectedCurrency":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses200ContentApplicationJsonSchemaPropertiesDetectedCurrency"}},"required":["quote","sheetName","headerRowIndex","unitRowIndex","headerCells","dataRowCount","lineCount","templateMatched","matchedProfileId","layoutSignature","detectedCurrency"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesParsePostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesLineIdsItems":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesLineIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesLineIdsItems"},"maxItems":500},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesForceAllOf0":{"type":"boolean"},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesForce":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesForceAllOf0"}],"default":false},"DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"lineIds":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesLineIds"},"force":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostRequestBodyContentApplicationJsonSchemaPropertiesForce"}},"required":["quoteId"],"additionalProperties":false},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesCreated":{"type":"number"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesSkipped":{"type":"number"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineNumber":{"type":"number"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItems":{"type":"object","properties":{"lineId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesLineNumber"},"message":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItemsPropertiesMessage"}},"required":["lineId","lineNumber","message"],"additionalProperties":false},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailed":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailedItems"}},"DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"created":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesCreated"},"updated":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesUpdated"},"skipped":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesSkipped"},"failed":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses200ContentApplicationJsonSchemaPropertiesFailed"}},"required":["created","updated","skipped","failed"],"additionalProperties":false},"DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPromotePostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSheetName":{"type":"string","maxLength":120},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalPropertiesPropertiesSourceIndex":{"type":"number"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalPropertiesPropertiesSourceHeader":{"type":"string","maxLength":200},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalProperties":{"type":"object","properties":{"sourceIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalPropertiesPropertiesSourceIndex"},"sourceHeader":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalPropertiesPropertiesSourceHeader"}},"required":["sourceIndex","sourceHeader"],"additionalProperties":false},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMap":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMapAdditionalProperties"}},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesUseSectionsAllOf0":{"type":"boolean"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesUseSections":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesUseSectionsAllOf0"}],"default":true},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesCategoryFromSectionAllOf0":{"type":"boolean"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesCategoryFromSection":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesCategoryFromSectionAllOf0"}],"default":true},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrencyAnyOf0":{"type":"null"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrencyAnyOf1":{"type":"string","maxLength":3},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrencyAnyOf1"}]},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0":{"type":"object","properties":{"useSections":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesUseSections"},"categoryFromSection":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesCategoryFromSection"},"detectedCurrency":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0PropertiesDetectedCurrency"}},"additionalProperties":false},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRules":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRulesAllOf0"}],"default":{"useSections":true,"categoryFromSection":true}},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSaveProfileAllOf0":{"type":"boolean"},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSaveProfile":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSaveProfileAllOf0"}],"default":false},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesProfileName":{"type":"string","maxLength":200},"DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"quoteId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteId"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesHeaderRowIndex"},"columnMap":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesColumnMap"},"sectionRules":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSectionRules"},"saveProfile":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesSaveProfile"},"profileName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostRequestBodyContentApplicationJsonSchemaPropertiesProfileName"}},"required":["quoteId","sheetName","headerRowIndex","columnMap"],"additionalProperties":false},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuote":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuotePropertiesStatus"}},"required":["id","status"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesSheetName":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesHeaderRowIndex":{"type":"number"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesColumns":{"type":"array","items":{}},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesLineCount":{"type":"number"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileIdAnyOf1"}]},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesLayoutSignature":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"quote":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesQuote"},"sheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesHeaderRowIndex"},"columns":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesColumns"},"lineCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesLineCount"},"matchedProfileId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesMatchedProfileId"},"layoutSignature":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses200ContentApplicationJsonSchemaPropertiesLayoutSignature"}},"required":["quote","sheetName","headerRowIndex","columns","lineCount","matchedProfileId","layoutSignature"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesRemapPostResponses422ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesGetParameters1Schema":{"type":"string","maxLength":200},"DocPathsSourcingQuotesGetParameters2Schema":{"type":"string","enum":["draft","approved","archived","cancelled"]},"DocPathsSourcingQuotesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesGetParameters4Schema":{"type":"number"},"DocPathsSourcingQuotesGetParameters5Schema":{"type":"number"},"DocPathsSourcingQuotesGetParameters6Schema":{"type":"string","enum":["number","quote_date","created_at","updated_at"]},"DocPathsSourcingQuotesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSourcingQuotesGetParameters8Schema":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierIdAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshotAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshotAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshotAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDateAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDateAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDateAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntilAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceKind":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileNameAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileNameAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileNameAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetNameAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetNameAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetNameAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineCount":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedCount":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"supplierId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierId"},"supplierNameSnapshot":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameSnapshot"},"quoteDate":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuoteDate"},"validUntil":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidUntil"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"sourceKind":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceKind"},"sourceFileName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceFileName"},"sourceSheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSheetName"},"lineCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineCount"},"promotedCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPromotedCount"},"created_at":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","currencyCode","status","sourceKind","lineCount","promotedCount"],"additionalProperties":true},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSourcingQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf1"}]},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf1":{"type":"string","maxLength":200},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf1"}]},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate":{},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCodeAllOf0":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCodeAllOf0"}],"default":"CNY"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAllOf0":{"type":"string","enum":["excel_import","manual"]},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAllOf0"}],"default":"manual"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf1"}]},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierId"},"supplierNameSnapshot":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshot"},"quoteDate":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate"},"validUntil":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"sourceKind":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceFileName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceFileName"},"notes":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["quoteDate","validUntil"],"additionalProperties":false},"DocPathsSourcingQuotesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSourcingQuotesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierIdAnyOf1"}]},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf1":{"type":"string","maxLength":200},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshotAnyOf1"}]},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate":{},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCodeAllOf0":{"type":"string","pattern":"^[A-Z]{3}$"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCodeAllOf0"}],"default":"CNY"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAllOf0":{"type":"string","enum":["excel_import","manual"]},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAllOf0"}],"default":"manual"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf1":{"type":"string","maxLength":255},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileNameAnyOf1"}]},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"supplierId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierId"},"supplierNameSnapshot":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSupplierNameSnapshot"},"quoteDate":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate"},"validUntil":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesQuoteDate"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"sourceKind":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceFileName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceFileName"},"notes":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSourcingQuotesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSourcingQuotesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSourcingQuotesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSourcingQuotesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSourcingQuotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingQuotesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSourcingTemplateGetResponses200ContentApplicationJsonSchema":{"type":"string"},"DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingTemplateGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesIdGetParameters0Schema":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumberAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumberAnyOf1":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumberAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCurrencyCode":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierIdAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentIdAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentIdAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetNameAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetNameAnyOf1":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetNameAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndexAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndexAnyOf1":{"type":"number"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndex":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndexAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndexAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesLineCount":{"type":"number"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPromotedCount":{"type":"number"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumber"},"status":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus"},"currencyCode":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCurrencyCode"},"supplierId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSupplierId"},"sourceAttachmentId":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceAttachmentId"},"sourceSheetName":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSourceSheetName"},"headerRowIndex":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesHeaderRowIndex"},"lineCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesLineCount"},"promotedCount":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPromotedCount"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"}},"required":["id","number","status","currencyCode","supplierId","sourceAttachmentId","sourceSheetName","headerRowIndex","lineCount","promotedCount","updatedAt"],"additionalProperties":true},"DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses400ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses401ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses403ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsSourcingQuotesIdGetResponses404ContentApplicationJsonSchemaPropertiesCode"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsAttachGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsAttachGetParameters1Schema":{"type":"string","enum":["draft","issued","signed","closed","cancelled"]},"DocPathsTradeDocsContractsAttachGetParameters2Schema":{"type":"number"},"DocPathsTradeDocsContractsAttachGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsContractsAttachGetParameters4Schema":{"type":"string"},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"}},"required":["id","attachmentId"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsAttachGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsAttachGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"}},"required":["id","attachmentId"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsContractsAttachPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsAttachPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsAttachPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsAttachPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsAttachPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsLinesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsLinesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsLinesGetParameters2Schema":{"type":"number"},"DocPathsTradeDocsContractsLinesGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsContractsLinesGetParameters4Schema":{"type":"string","enum":["id","line_number"]},"DocPathsTradeDocsContractsLinesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTradeDocsContractsLinesGetParameters6Schema":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNameAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModelAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModelAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModelAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpecAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpecAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpec":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpecAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpecAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractAmount":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceAmount":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceSource":{"type":"string","enum":["invoice","computed"]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"contractId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"name":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"model":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModel"},"spec":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSpec"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"contractAmount":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractAmount"},"financeAmount":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceAmount"},"financeSource":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceSource"},"note":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"}},"required":["id","contractId","lineNumber","quantity","unitPrice","contractAmount","financeAmount","financeSource"],"additionalProperties":true},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTradeDocsContractsLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsGetParameters1Schema":{"type":"string"},"DocPathsTradeDocsContractsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsTradeDocsContractsGetParameters4Schema":{"type":"string","enum":["purchase","sales"]},"DocPathsTradeDocsContractsGetParameters5Schema":{"type":"string","enum":["draft","issued","signed","closed","cancelled"]},"DocPathsTradeDocsContractsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsGetParameters7Schema":{"type":"string","enum":["purchase","internal","export"]},"DocPathsTradeDocsContractsGetParameters8Schema":{"type":"number"},"DocPathsTradeDocsContractsGetParameters9Schema":{"type":"number"},"DocPathsTradeDocsContractsGetParameters10Schema":{"type":"string","enum":["id","number","status","contract_total","finance_total","created_at","updated_at"]},"DocPathsTradeDocsContractsGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection":{"type":"string","enum":["purchase","sales"]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["draft","issued","signed","closed","cancelled"]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyKind":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTierAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTierAnyOf1":{"type":"string","enum":["purchase","internal","export"]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTier":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTierAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTierAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractTotal":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceTotal":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDifferenceTotal":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleAnyOf1":{"type":"number"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScale":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleFallback":{"type":"boolean"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAtAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDateAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDateAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDateAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection"},"status":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyId"},"counterpartyName":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyName"},"priceTier":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"contractTotal":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractTotal"},"financeTotal":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinanceTotal"},"differenceTotal":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDifferenceTotal"},"currencyScale":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScale"},"currencyScaleFallback":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyScaleFallback"},"signedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSignedAt"},"deliveryDate":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeliveryDate"},"created_at":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","direction","status","counterpartyKind","currencyCode","contractTotal","financeTotal","differenceTotal"],"additionalProperties":true},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTradeDocsContractsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0":{"type":"string","enum":["purchase","sales"]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDirection":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0"}],"default":"purchase"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0":{"type":"string","enum":["supplier","customer"]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0"}],"default":"supplier"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot":{},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf1":{"type":"string","enum":["purchase","internal","export"]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTier":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRateOneOf1":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRateOneOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1":{"type":"string","enum":["purchase_order","sales_order","manual"]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSignedAt":{},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTerms":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf1":{"type":"string","maxLength":200},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethod":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf1":{"type":"string","maxLength":200},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestination":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarks":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf1":{"type":"string","maxLength":300},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf1":{"type":"string","maxLength":120},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpec":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1":{"type":"string","maxLength":24},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity":{},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice":{},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf1"}]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId"},"productSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"name":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku"},"model":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModel"},"spec":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpec"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice"},"note":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNote"}},"required":["productSnapshot","quantity","unitPrice"],"additionalProperties":false},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items"},"maxItems":500},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0"}],"default":[]},"DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDirection"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId"},"counterpartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"ourPartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"priceTier":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"exchangeRate":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate"},"sourceKind":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"sourceSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"signedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSignedAt"},"deliveryDate":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSignedAt"},"paymentTerms":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesPaymentTerms"},"shippingMethod":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesShippingMethod"},"destination":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesDestination"},"marks":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesMarks"},"notes":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["counterpartySnapshot","ourPartySnapshot","exchangeRate","sourceSnapshot","signedAt","deliveryDate"],"additionalProperties":false},"DocPathsTradeDocsContractsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTradeDocsContractsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0":{"type":"string","enum":["purchase","sales"]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDirection":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0"}],"default":"purchase"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0":{"type":"string","enum":["supplier","customer"]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0"}],"default":"supplier"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot":{},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf1":{"type":"string","enum":["purchase","internal","export"]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTier":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTierAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesExchangeRateOneOf1":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate":{"oneOf":[{},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesExchangeRateOneOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1":{"type":"string","enum":["purchase_order","sales_order","manual"]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSignedAt":{},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTerms":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTermsAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf1":{"type":"string","maxLength":200},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethod":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethodAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf1":{"type":"string","maxLength":200},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestination":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestinationAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarks":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarksAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf1":{"type":"string","maxLength":300},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNameAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf1":{"type":"string","maxLength":120},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModelAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpec":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpecAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1":{"type":"string","maxLength":24},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity":{},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice":{},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNoteAnyOf1"}]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId"},"productSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"name":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesName"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku"},"model":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesModel"},"spec":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSpec"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice"},"note":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesNote"}},"required":["productSnapshot","quantity","unitPrice"],"additionalProperties":false},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items"},"maxItems":500},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLines":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0"}],"default":[]},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDirection"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId"},"counterpartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"ourPartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"priceTier":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceTier"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"exchangeRate":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesExchangeRate"},"sourceKind":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"sourceSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"signedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSignedAt"},"deliveryDate":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSignedAt"},"paymentTerms":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesPaymentTerms"},"shippingMethod":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesShippingMethod"},"destination":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesDestination"},"marks":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesMarks"},"notes":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesLines"},"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTradeDocsContractsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsContractsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsContractsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsContractsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsContractsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsTransitionsGetParameters1Schema":{"type":"string","enum":["draft","issued","signed","closed","cancelled"]},"DocPathsTradeDocsContractsTransitionsGetParameters2Schema":{"type":"number"},"DocPathsTradeDocsContractsTransitionsGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsContractsTransitionsGetParameters4Schema":{"type":"string"},"DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["issue","sign","close","cancel"]},"DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":500},"DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId"},"action":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction"},"reason":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["id","action"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsContractsTransitionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsTransitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsTransitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesAttachGetParameters1Schema":{"type":"string","enum":["draft","confirmed","void"]},"DocPathsTradeDocsInvoicesAttachGetParameters2Schema":{"type":"number"},"DocPathsTradeDocsInvoicesAttachGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsInvoicesAttachGetParameters4Schema":{"type":"string"},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"}},"required":["id","attachmentId"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesAttachGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesAttachGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"}},"required":["id","attachmentId"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsInvoicesAttachPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesAttachPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesAttachPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesAttachPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesAttachPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesLinesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetParameters4Schema":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetParameters5Schema":{"type":"string","enum":["id","line_number"]},"DocPathsTradeDocsInvoicesLinesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTradeDocsInvoicesLinesGetParameters7Schema":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineIdAnyOf1"}]},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId"},"lineNumber":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLineNumber"},"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductId"},"description":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSku"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"amount":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"contractLineId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractLineId"}},"required":["id","invoiceId","lineNumber","quantity","unitPrice","amount"],"additionalProperties":true},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTradeDocsInvoicesLinesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesLinesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesLinesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesLinesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetParameters1Schema":{"type":"string"},"DocPathsTradeDocsInvoicesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsTradeDocsInvoicesGetParameters4Schema":{"type":"string","enum":["inbound","outbound"]},"DocPathsTradeDocsInvoicesGetParameters5Schema":{"type":"string","enum":["draft","confirmed","void"]},"DocPathsTradeDocsInvoicesGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetParameters7Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetParameters8Schema":{"type":"number"},"DocPathsTradeDocsInvoicesGetParameters9Schema":{"type":"number"},"DocPathsTradeDocsInvoicesGetParameters10Schema":{"type":"string","enum":["id","number","status","total","issued_at","created_at","updated_at"]},"DocPathsTradeDocsInvoicesGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection":{"type":"string","enum":["inbound","outbound"]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["draft","confirmed","void"]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyKind":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyNameAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumberAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumberAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumberAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotal":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotal":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01":{"type":"null"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf01"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf11"}]},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection"},"status":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyId"},"counterpartyName":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCounterpartyName"},"contractId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"contractNumber":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrencyCode"},"subtotal":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubtotal"},"total":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotal"},"issuedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"},"created_at":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt1"}},"required":["id","direction","status","counterpartyKind","currencyCode","subtotal","total"],"additionalProperties":true},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTradeDocsInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0":{"type":"string","enum":["inbound","outbound"]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDirection":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0"}],"default":"inbound"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0":{"type":"string","enum":["supplier","customer"]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0"}],"default":"supplier"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot":{},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1":{"type":"string","enum":["purchase_order","sales_order","manual"]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1":{"type":"string","maxLength":24},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity":{},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice":{},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesAmount":{},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId"},"productSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"description":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice"},"amount":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesAmount"},"contractLineId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineId"}},"required":["productSnapshot","quantity","unitPrice","amount"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items"},"maxItems":500},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0"}],"default":[]},"DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"number":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNumber"},"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesDirection"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId"},"counterpartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"contractId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"sourceKind":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"sourceSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"issuedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"notes":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["counterpartySnapshot","sourceSnapshot","issuedAt"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumberAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0":{"type":"string","enum":["inbound","outbound"]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDirection":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDirectionAllOf0"}],"default":"inbound"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0":{"type":"string","enum":["supplier","customer"]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKindAllOf0"}],"default":"supplier"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot":{},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1":{"type":"string","enum":["purchase_order","sales_order","manual"]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKindAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescriptionAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1":{"type":"string","maxLength":64},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSkuAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1":{"type":"string","maxLength":24},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity":{},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice":{},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesAmount":{},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf0":{"type":"null"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineIdAnyOf1"}]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items":{"type":"object","properties":{"productId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesProductId"},"productSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"description":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesDescription"},"sku":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesSku"},"unit":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnit"},"quantity":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesQuantity"},"unitPrice":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesUnitPrice"},"amount":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesAmount"},"contractLineId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0ItemsPropertiesContractLineId"}},"required":["productSnapshot","quantity","unitPrice","amount"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0Items"},"maxItems":500},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLines":{"allOf":[{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLinesAllOf0"}],"default":[]},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"number":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNumber"},"direction":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesDirection"},"counterpartyKind":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyKind"},"counterpartyId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartyId"},"counterpartySnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"contractId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"sourceKind":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceKind"},"sourceId":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"sourceSnapshot":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCounterpartySnapshot"},"currencyCode":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"issuedAt":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"notes":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"lines":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesLines"},"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsInvoicesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsInvoicesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsInvoicesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesTransitionsGetParameters1Schema":{"type":"string","enum":["draft","confirmed","void"]},"DocPathsTradeDocsInvoicesTransitionsGetParameters2Schema":{"type":"number"},"DocPathsTradeDocsInvoicesTransitionsGetParameters3Schema":{"type":"number"},"DocPathsTradeDocsInvoicesTransitionsGetParameters4Schema":{"type":"string"},"DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","status"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction":{"type":"string","enum":["confirm","void"]},"DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":500},"DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesId"},"action":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesAction"},"reason":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["id","action"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsInvoicesTransitionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses201ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesTransitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsInvoicesTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsInvoicesTransitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsInvoicesTransitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsIdDocumentGetParameters0Schema":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsIdDocumentGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentPostParameters0Schema":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesAttachmentId":{"type":"string","format":"uuid"},"DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesFileName":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"attachmentId":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesAttachmentId"},"fileName":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses200ContentApplicationJsonSchemaPropertiesFileName"}},"required":["ok","attachmentId","fileName"],"additionalProperties":false},"DocPathsTradeDocsContractsIdDocumentPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTradeDocsContractsIdDocumentPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTradeDocsContractsIdDocumentPostResponses422ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTradeDocsContractsIdDocumentPostResponses422ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTradeDocsContractsIdDocumentPostResponses422ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsExportFinanceCollectionDocumentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsGetParameters2Schema":{"type":"string","enum":["foreign_income_certificate","other"]},"DocPathsExportFinanceCollectionDocumentsGetParameters3Schema":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetParameters4Schema":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetParameters5Schema":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCollectionId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType":{"type":"string","enum":["foreign_income_certificate","other"]},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"collectionId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCollectionId"},"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"},"updated_at":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","collectionId","docType"],"additionalProperties":true},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesCollectionId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["foreign_income_certificate","other"]},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"collectionId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesCollectionId"},"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["collectionId","docType"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["foreign_income_certificate","other"]},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote"},"id":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsExportFinanceCollectionDocumentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsExportFinanceCollectionDocumentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionDocumentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionsGetParameters1Schema":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumberAnyOf1"}]},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCurrencyCode":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCollectionStatus":{"type":"string","enum":["received","not_received","unknown"]},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf1"}]},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesId"},"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderId"},"purchaseOrderNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesPurchaseOrderNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCurrencyCode"},"collectionStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCollectionStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAt"}},"required":["id","purchaseOrderId","currencyCode","collectionStatus"],"additionalProperties":true},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1"}]},"DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsExportFinanceCollectionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumberAnyOf1"}]},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCollectionStatus":{"type":"string","enum":["received","not_received","unknown"]},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string","maxLength":64},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderId"},"purchaseOrderNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPurchaseOrderNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"collectionStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCollectionStatus"},"updatedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["purchaseOrderId","collectionStatus"],"additionalProperties":false},"DocPathsExportFinanceCollectionsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceCollectionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceCollectionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceCollectionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceCollectionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceCollectionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceContainerFilesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceContainerFilesGetParameters1Schema":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsExportFinanceContainerFilesGetParameters2Schema":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceContainerFilesGetParameters3Schema":{"type":"string","maxLength":200},"DocPathsExportFinanceContainerFilesGetParameters4Schema":{"type":"number"},"DocPathsExportFinanceContainerFilesGetParameters5Schema":{"type":"number"},"DocPathsExportFinanceContainerFilesGetParameters6Schema":{"type":"string","enum":["departed_at","eta","number"]},"DocPathsExportFinanceContainerFilesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsExportFinanceContainerFilesGetParameters8Schema":{"type":"string","enum":["json","csv"]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentStatus":{"type":"string","enum":["draft","in_transit","received","cancelled"]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf1":{"type":"string","enum":["picked_up","export_customs","in_transit","arrived","cleared","warehoused"]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestoneAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierNameAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePort":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePortAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAtAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtdAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEta":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesPurchaseOrderId":{"type":"string","format":"uuid"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumberAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerNameAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerNameAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerNameAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesTotal":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmountAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercentAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercentAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercentAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercentAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItems":{"type":"object","properties":{"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesPurchaseOrderId"},"number":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesNumber"},"businessNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesBusinessNumber"},"ownerName":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesOwnerName"},"customerName":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesCustomerName"},"total":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesTotal"},"allocatedRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesAllocatedRefundAmount"},"sharePercent":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItemsPropertiesSharePercent"}},"required":["purchaseOrderId","number","businessNumber","ownerName","customerName","total","allocatedRefundAmount","sharePercent"],"additionalProperties":false},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrders":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrdersItems"}},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundStatus":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmountAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNoteAnyOf1":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNoteAnyOf1"}]},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSo":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTelexRelease":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesCustomsDeclaration":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesDomesticFreight":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesBookingCharges":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTaxRefundPackage":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesReportDraft":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklist":{"type":"object","properties":{"so":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSo"},"telexRelease":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTelexRelease"},"customsDeclaration":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesCustomsDeclaration"},"domesticFreight":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesDomesticFreight"},"bookingCharges":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesBookingCharges"},"taxRefundPackage":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTaxRefundPackage"},"reportDraft":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesReportDraft"}},"required":["so","telexRelease","customsDeclaration","domesticFreight","bookingCharges","taxRefundPackage","reportDraft"],"additionalProperties":false},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissingItems":{"type":"string"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissing":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissingItems"}},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentNumber"},"shipmentStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentStatus"},"currentMilestone":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrentMilestone"},"carrierName":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCarrierName"},"departurePort":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeparturePort"},"departedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDepartedAt"},"receivedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt"},"etd":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtd"},"eta":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEta"},"containerType":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType"},"containerNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber"},"sealNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber"},"bookingNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber"},"orders":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrders"},"taxRefundStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundStatus"},"taxRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundAmount"},"taxRefundNote":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxRefundNote"},"checklist":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklist"},"checklistMissing":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissing"}},"required":["shipmentId","shipmentNumber","shipmentStatus","currentMilestone","carrierName","departurePort","departedAt","receivedAt","etd","eta","containerType","containerNumber","sealNumber","bookingNumber","orders","taxRefundStatus","taxRefundAmount","taxRefundNote","checklist","checklistMissing"],"additionalProperties":true},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsExportFinanceContainerFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsExportFinanceContainerFilesGetResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceContainerFilesGetResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceContainerFilesGetResponses403ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceOrderFilesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceOrderFilesGetParameters1Schema":{"type":"string","enum":["business","finance"]},"DocPathsExportFinanceOrderFilesGetParameters2Schema":{"type":"string","enum":["cancelled","closed","received","shipped","factory_pickup","placed","draft"]},"DocPathsExportFinanceOrderFilesGetParameters3Schema":{"type":"string","enum":["received","not_received","unknown"]},"DocPathsExportFinanceOrderFilesGetParameters4Schema":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceOrderFilesGetParameters5Schema":{"type":"string","maxLength":200},"DocPathsExportFinanceOrderFilesGetParameters6Schema":{"type":"number"},"DocPathsExportFinanceOrderFilesGetParameters7Schema":{"type":"number"},"DocPathsExportFinanceOrderFilesGetParameters8Schema":{"type":"string","enum":["placed_at","expected_delivery","total"]},"DocPathsExportFinanceOrderFilesGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsExportFinanceOrderFilesGetParameters10Schema":{"type":"string","enum":["json","csv"]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId":{"type":"string","format":"uuid"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierNameAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerNameAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategoryAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessStatus":{"type":"string","enum":["cancelled","closed","received","shipped","factory_pickup","placed","draft"]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtdAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtdAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtdAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerTypeAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentCount":{"type":"number"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesOrderAmount":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlannedAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlannedAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlanned":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlannedAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlannedAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlannedAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlannedAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlanned":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlannedAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlannedAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesPaidAmount":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesOutstandingAmount":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmountAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrencyAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrencyAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrencyAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmountAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrencyAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrencyAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrency":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrencyAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrencyAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRateAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRateAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRateAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRateAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinance":{"type":"object","properties":{"orderAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesOrderAmount"},"depositPlanned":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesDepositPlanned"},"balancePlanned":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesBalancePlanned"},"paidAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesPaidAmount"},"outstandingAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesOutstandingAmount"},"kcPriceAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceAmount"},"kcPriceCurrency":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesKcPriceCurrency"},"subsidiaryInvoiceAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceAmount"},"subsidiaryInvoiceCurrency":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesSubsidiaryInvoiceCurrency"},"exchangeRate":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinancePropertiesExchangeRate"}},"required":["orderAmount","depositPlanned","balancePlanned","paidAmount","outstandingAmount","kcPriceAmount","kcPriceCurrency","subsidiaryInvoiceAmount","subsidiaryInvoiceCurrency","exchangeRate"],"additionalProperties":false},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCollectionStatus":{"type":"string","enum":["received","not_received","unknown"]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundStatus":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmountAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesStatus":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestoneAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestoneAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestoneAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumberAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAtAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundStatus":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmountAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNoteAnyOf1":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNoteAnyOf1"}]},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItems":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesShipmentNumber"},"status":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesStatus"},"currentMilestone":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesCurrentMilestone"},"containerNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesContainerNumber"},"departedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesDepartedAt"},"receivedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesReceivedAt"},"taxRefundStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundStatus"},"taxRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundAmount"},"taxRefundNote":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItemsPropertiesTaxRefundNote"}},"required":["shipmentId","shipmentNumber","status","currentMilestone","containerNumber","departedAt","receivedAt","taxRefundStatus","taxRefundAmount","taxRefundNote"],"additionalProperties":false},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainers":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainersItems"}},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSupplierInvoice":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPackingList":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPurchasePaymentReceipt":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPurchaseContract":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSalesContract":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesKcInvoiceStamped":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesForeignIncomeCertificate":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSo":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTelexRelease":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesCustomsDeclaration":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesDomesticFreight":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesBookingCharges":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklist":{"type":"object","properties":{"supplierInvoice":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSupplierInvoice"},"packingList":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPackingList"},"purchasePaymentReceipt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPurchasePaymentReceipt"},"purchaseContract":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesPurchaseContract"},"salesContract":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSalesContract"},"kcInvoiceStamped":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesKcInvoiceStamped"},"foreignIncomeCertificate":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesForeignIncomeCertificate"},"so":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesSo"},"telexRelease":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesTelexRelease"},"customsDeclaration":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesCustomsDeclaration"},"domesticFreight":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesDomesticFreight"},"bookingCharges":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistPropertiesBookingCharges"}},"required":["supplierInvoice","packingList","purchasePaymentReceipt","purchaseContract","salesContract","kcInvoiceStamped","foreignIncomeCertificate","so","telexRelease","customsDeclaration","domesticFreight","bookingCharges"],"additionalProperties":false},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissingItems":{"type":"string"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissing":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissingItems"}},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"purchaseOrderId":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurchaseOrderId"},"number":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"businessNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessNumber"},"supplierName":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSupplierName"},"ownerName":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerName"},"customerName":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName"},"productCategory":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProductCategory"},"businessStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessStatus"},"placedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlacedAt"},"expectedDeliveryAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpectedDeliveryAt"},"shipmentEtd":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentEtd"},"shipmentDepartedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentDepartedAt"},"receivedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivedAt"},"containerType":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerType"},"containerNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainerNumber"},"sealNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSealNumber"},"bookingNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBookingNumber"},"shipmentCount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShipmentCount"},"finance":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinance"},"collectionStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCollectionStatus"},"refundStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundStatus"},"allocatedRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedRefundAmount"},"containers":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContainers"},"checklist":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklist"},"checklistMissing":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecklistMissing"}},"required":["purchaseOrderId","number","businessNumber","supplierName","ownerName","customerName","productCategory","businessStatus","placedAt","expectedDeliveryAt","shipmentEtd","shipmentDepartedAt","receivedAt","containerType","containerNumber","sealNumber","bookingNumber","shipmentCount","finance","collectionStatus","refundStatus","allocatedRefundAmount","containers","checklist","checklistMissing"],"additionalProperties":true},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsExportFinanceOrderFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsExportFinanceOrderFilesGetResponses400ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceOrderFilesGetResponses401ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceOrderFilesGetResponses403ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsExportFinanceRefundDocumentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsGetParameters2Schema":{"type":"string","enum":["tax_refund_package","report_draft","other"]},"DocPathsExportFinanceRefundDocumentsGetParameters3Schema":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetParameters4Schema":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetParameters5Schema":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType":{"type":"string","enum":["tax_refund_package","report_draft","other"]},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"refundId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRefundId"},"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"},"updated_at":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","refundId","docType"],"additionalProperties":true},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesRefundId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["tax_refund_package","report_draft","other"]},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"refundId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesRefundId"},"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["refundId","docType"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType":{"type":"string","enum":["tax_refund_package","report_draft","other"]},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1":{"type":"string","minLength":1},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAtAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"docType":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesDocType"},"issuedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesIssuedAt"},"attachmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"note":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesNote"},"id":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsExportFinanceRefundDocumentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsExportFinanceRefundDocumentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundDocumentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundDocumentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundsGetParameters1Schema":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumberAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumberAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCurrencyCode":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundStatus":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmountAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmountAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmountAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmountAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNoteAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNoteAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAtAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesId"},"shipmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesShipmentNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCurrencyCode"},"taxRefundStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundStatus"},"taxRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundAmount"},"taxRefundNote":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesTaxRefundNote"},"createdAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1PropertiesUpdatedAt"}},"required":["id","shipmentId","currencyCode","taxRefundStatus"],"additionalProperties":true},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItemAnyOf1"}]},"DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsExportFinanceRefundsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumberAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumberAnyOf1":{"type":"string","maxLength":64},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumberAnyOf1"}]},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode":{"allOf":[{}],"default":"CNY"},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundStatus":{"type":"string","enum":["completed","applied","not_started","unknown"]},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundAmount":{},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNoteAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNoteAnyOf1":{"type":"string","maxLength":500},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNoteAnyOf1"}]},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string","maxLength":64},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"shipmentId":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentId"},"shipmentNumber":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesShipmentNumber"},"currencyCode":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyCode"},"taxRefundStatus":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundStatus"},"taxRefundAmount":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundAmount"},"taxRefundNote":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxRefundNote"},"updatedAt":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutRequestBodyContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["shipmentId","taxRefundStatus","taxRefundAmount"],"additionalProperties":false},"DocPathsExportFinanceRefundsPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsExportFinanceRefundsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses200ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsExportFinanceRefundsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsExportFinanceRefundsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsExportFinanceRefundsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsExportFinanceRefundsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsPartiesOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPartiesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPartiesGetParameters1Schema":{"type":"string"},"DocPathsPartiesGetParameters2Schema":{"type":"string","maxLength":200},"DocPathsPartiesGetParameters3Schema":{"type":"string","enum":["active","inactive"]},"DocPathsPartiesGetParameters4Schema":{"type":"string","maxLength":2},"DocPathsPartiesGetParameters5Schema":{"type":"number"},"DocPathsPartiesGetParameters6Schema":{"type":"number"},"DocPathsPartiesGetParameters7Schema":{"type":"string","enum":["id","code","country_code","status","created_at","updated_at"]},"DocPathsPartiesGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCodeAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactNameAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhoneAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhoneAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhoneAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"countryCode":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryCode"},"status":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"contactName":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactName"},"contactPhone":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContactPhone"},"email":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail"},"addressLine1":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"tenant_id":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"organization_id":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"created_at":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updated_at":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","name","status"],"additionalProperties":true},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped":{"type":"boolean"},"DocPathsPartiesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"totalIsCapped":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses200ContentApplicationJsonSchemaPropertiesTotalIsCapped"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPartiesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCodeAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCodeAnyOf0"},{}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["active","inactive"]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string","enum":["buyer","consignee","branch","forwarder","broker","bank","certifier"]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesRolesItems"},"maxItems":7},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBeneficiaryBank":{"type":"string","minLength":1,"maxLength":200},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesAccountNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0":{"type":"null"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1"}]},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesId"},"beneficiaryBank":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBeneficiaryBank"},"accountNumber":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesAccountNumber"},"swiftCode":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCode"},"bankAddress":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddress"},"isDefault":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesIsDefault"}},"required":["beneficiaryBank","accountNumber"],"additionalProperties":false},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccounts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItems"},"maxItems":10},"DocPathsPartiesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"countryCode":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryCode"},"status":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"contactName":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactName"},"contactPhone":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone"},"email":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"addressLine1":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"roles":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesRoles"},"bankAccounts":{"$ref":"#/components/schemas/DocPathsPartiesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccounts"}},"required":["code","name"],"additionalProperties":false},"DocPathsPartiesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPartiesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCodeAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCodeAnyOf0"},{}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["active","inactive"]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactNameAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1AnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2AnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":200},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string","enum":["buyer","consignee","branch","forwarder","broker","bank","certifier"]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesRolesItems"},"maxItems":7},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBeneficiaryBank":{"type":"string","minLength":1,"maxLength":200},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesAccountNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1":{"type":"string","maxLength":32},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0":{"type":"null"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1":{"type":"string","maxLength":500},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1"}]},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesId"},"beneficiaryBank":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBeneficiaryBank"},"accountNumber":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesAccountNumber"},"swiftCode":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesSwiftCode"},"bankAddress":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesBankAddress"},"isDefault":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItemsPropertiesIsDefault"}},"required":["beneficiaryBank","accountNumber"],"additionalProperties":false},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccounts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccountsItems"},"maxItems":10},"DocPathsPartiesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"countryCode":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryCode"},"status":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"contactName":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactName"},"contactPhone":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesContactPhone"},"email":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"addressLine1":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"roles":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesRoles"},"bankAccounts":{"$ref":"#/components/schemas/DocPathsPartiesPutRequestBodyContentApplicationJsonSchemaPropertiesBankAccounts"}},"required":["id"],"additionalProperties":false},"DocPathsPartiesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPartiesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPartiesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPartiesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPartiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesIdGetParameters0Schema":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesName":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCodeAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCodeAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCodeAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactNameAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactNameAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactNameAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhoneAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhoneAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhoneAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmailAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmailAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmailAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1AnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2AnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCityAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCityAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCityAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRolesItems":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRolesItems"}},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBeneficiaryBank":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesAccountNumber":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCodeAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddressAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesId"},"beneficiaryBank":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBeneficiaryBank"},"accountNumber":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesAccountNumber"},"swiftCode":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesSwiftCode"},"bankAddress":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesBankAddress"},"isDefault":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItemsPropertiesIsDefault"}},"required":["id","beneficiaryBank","accountNumber","swiftCode","bankAddress","isDefault"],"additionalProperties":false},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccounts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccountsItems"}},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesName"},"countryCode":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCountryCode"},"status":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus"},"contactName":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactName"},"contactPhone":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContactPhone"},"email":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEmail"},"addressLine1":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCity"},"roles":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRoles"},"bankAccounts":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesBankAccounts"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"}},"required":["id","code","name","countryCode","status","contactName","contactPhone","email","addressLine1","addressLine2","city","roles","bankAccounts","updatedAt"],"additionalProperties":true},"DocPathsPartiesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsPartiesIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPartiesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPartiesIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPartiesIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPartiesIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsStorageProvidersS3DownloadGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsStorageProvidersS3ListGetResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsStorageProvidersS3SignedUrlPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsStorageProvidersS3UploadPostResponses201ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"},"DocPathsStorageProvidersS3SignedUploadTokenPutResponses200ContentApplicationJsonSchema":{"type":"object","description":"Schema not declared"}}},"tags":[{"name":"Authentication & Accounts","description":"User accounts, sessions, roles and password resets."},{"name":"Directory (Tenants & Organizations)","description":"Multi-tenant directory with tenants and organizations."},{"name":"Configuration","description":"Shared configuration storage and helpers for module settings."},{"name":"Custom Entities & Fields","description":"User-defined entities, custom fields, and dynamic records storage."},{"name":"Query Indexes","description":"Hybrid query layer with full-text and vector search capabilities."},{"name":"API Documentation","description":"Auto-generated documentation for all HTTP endpoints."},{"name":"Audit & Action Logs","description":"Tracks user actions and data accesses with undo support scaffolding."},{"name":"Notifications","description":"In-app notifications with module-extensible types and actions."},{"name":"Admin Dashboards","description":"Configurable admin dashboard with module-provided widgets."},{"name":"Events","description":"Event bus and subscriber dispatch"},{"name":"Search","description":"Unified search module with pluggable strategies (Meilisearch, Vector, Tokens)."},{"name":"Attachments","description":"File attachments and media management."},{"name":"Product Catalog","description":"Configurable catalog for products, variants, and pricing used by the sales module."},{"name":"Customer Relationship Management","description":"Core CRM capabilities for people, companies, deals, and activities."},{"name":"Sales Management","description":"Quoting, ordering, fulfillment, and billing capabilities built on modular pricing and tax pipelines."},{"name":"Warehouse Management System","description":"Warehouse topology, inventory balances, reservations, and movement ledger."},{"name":"Currencies","description":"Currencies and Exchange rate management"},{"name":"Shared Dictionaries","description":"Organization-scoped dictionaries for reusable enumerations and appearance presets."},{"name":"Feature Toggles","description":"Global feature flags with tenant-level overrides."},{"name":"Currency Policy","description":"Keeps the FX master and the currency dictionary on the currencies this app trades in (Greater China, Russia, Southeast Asia, the United States)."},{"name":"Scope Guards","description":"Blocks out-of-scope writes on installed auth admin commands (user creation destination, role/user ACL ownership) and surfaces the rejection as 403."},{"name":"Purchasing","description":"Supplier master, the supplier product library with its price list, purchase orders, and stage payments."},{"name":"Cross-Border Shipments","description":"Consignments that combine purchase orders, their in-transit milestones, and export documents."},{"name":"Integrations","description":"Core integration framework — external ID mapping, status badges, and integration registry."},{"name":"Data Sync","description":"Streaming data sync hub for import/export integrations."},{"name":"Platform Ops","description":"Marketplace storefronts, order mirrors, platform settlements and their reconciliation."},{"name":"Products","description":"自有商品主数据：商品、产品线、产品品类树与三档价格（采购/内部结算/对外销售）。"},{"name":"Product codes","description":"Code rules, the issuance ledger and the parser behind generated product codes."},{"name":"Sourcing","description":"供应商报价单：Excel 报价导入、版式映射模板与提升为商品主数据。"},{"name":"Internal Sales","description":"自有内部销售单据界面：报价单与销售订单，行引用自建商品主数据（products），底层沿用官方 sales 单据链。"},{"name":"Trade Documents","description":"购销合同与进项/销项发票：合同两方向、行商品快照、财务金额与合同金额双口径与差额。"},{"name":"Export Finance","description":"Collection records per purchase order and export tax-refund records per container, with the read-only order and container file projections."},{"name":"Parties","description":"Trading-party master: buyers, branches and service providers with their bank block."},{"name":"Storage Operations","description":"Operator CLI for the attachment storage migration: audit canonical paths, ledger and orphans; copy a partition to S3-compatible object storage and flip it in one transaction; verify, roll back and prune the local copies."},{"name":"S3-Compatible Storage","description":"Store attachments and files in AWS S3, DigitalOcean Spaces, MinIO, or any S3-compatible object storage."}]}